mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a9d42e0131
Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> PR-URL: https://github.com/nodejs/node/pull/3190
33 lines
698 B
JavaScript
33 lines
698 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var spawn = require('child_process').spawn;
|
|
var child = spawn(process.execPath, [], {
|
|
env: Object.assign(process.env, {
|
|
NODE_DEBUG: process.argv[2]
|
|
})
|
|
});
|
|
var wanted = child.pid + '\n';
|
|
var found = '';
|
|
|
|
child.stdout.setEncoding('utf8');
|
|
child.stdout.on('data', function(c) {
|
|
found += c;
|
|
});
|
|
|
|
child.stderr.setEncoding('utf8');
|
|
child.stderr.on('data', function(c) {
|
|
console.error('> ' + c.trim().split(/\n/).join('\n> '));
|
|
});
|
|
|
|
child.on('close', function(c) {
|
|
assert(!c);
|
|
assert.equal(found, wanted);
|
|
console.log('ok');
|
|
});
|
|
|
|
setTimeout(function() {
|
|
child.stdin.end('console.log(process.pid)');
|
|
});
|