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.
23 lines
472 B
23 lines
472 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
// Just reference stdin, it should start it
|
|
process.stdin;
|
|
return;
|
|
}
|
|
|
|
var proc = spawn(process.execPath, [__filename, 'child'], {
|
|
stdio: ['ipc', 'inherit', 'inherit']
|
|
});
|
|
|
|
var childCode = -1;
|
|
proc.on('exit', function(code) {
|
|
childCode = code;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(childCode, 0);
|
|
});
|
|
|