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.
37 lines
751 B
37 lines
751 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var fork = require('child_process').fork;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
process.send('1');
|
|
|
|
// check that child don't instantly die
|
|
setTimeout(function() {
|
|
process.send('2');
|
|
}, 200);
|
|
|
|
process.on('disconnect', function() {
|
|
process.stdout.write('3');
|
|
});
|
|
|
|
} else {
|
|
var child = fork(__filename, ['child'], {silent: true});
|
|
|
|
var ipc = [], stdout = '';
|
|
|
|
child.on('message', function(msg) {
|
|
ipc.push(msg);
|
|
|
|
if (msg === '2') child.disconnect();
|
|
});
|
|
|
|
child.stdout.on('data', function(chunk) {
|
|
stdout += chunk;
|
|
});
|
|
|
|
child.once('exit', function() {
|
|
assert.deepEqual(ipc, ['1', '2']);
|
|
assert.equal(stdout, '3');
|
|
});
|
|
}
|
|
|