mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
748 B
32 lines
748 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const child = spawn(process.execPath, [], {
|
|
env: Object.assign(process.env, {
|
|
NODE_DEBUG: process.argv[2]
|
|
})
|
|
});
|
|
const wanted = child.pid + '\n';
|
|
let 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', common.mustCall(function(c) {
|
|
assert.strictEqual(c, 0);
|
|
assert.strictEqual(found, wanted);
|
|
console.log('ok');
|
|
}));
|
|
|
|
setTimeout(function() {
|
|
child.stdin.end('console.log(process.pid)');
|
|
}, 1);
|
|
|