2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-12-23 16:02:12 -08:00
|
|
|
require('../common');
|
2014-11-04 00:08:41 -05:00
|
|
|
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);
|
|
|
|
});
|