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.
20 lines
579 B
20 lines
579 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const fork = require('child_process').fork;
|
||
|
|
||
|
if (process.argv[2] === 'child') {
|
||
|
process.send('ok', common.mustCall(function(err) {
|
||
|
assert.strictEqual(err, null);
|
||
|
}));
|
||
|
} else {
|
||
|
const child = fork(process.argv[1], ['child']);
|
||
|
child.on('message', common.mustCall(function(message) {
|
||
|
assert.strictEqual(message, 'ok');
|
||
|
}));
|
||
|
child.on('exit', common.mustCall(function(exitCode, signalCode) {
|
||
|
assert.strictEqual(exitCode, 0);
|
||
|
assert.strictEqual(signalCode, null);
|
||
|
}));
|
||
|
}
|