mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 20:08:02 +00:00

* use const instead of var for required modules * use assert.strictEqual instead of assert.equal * remove unnecessary process.nextTick PR-URL: https://github.com/nodejs/node/pull/10273 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
const fork = require('child_process').fork;
|
|
|
|
// Fork, then spawn. The spawned process should not hang.
|
|
switch (process.argv[2] || '') {
|
|
case '':
|
|
fork(__filename, ['fork']).on('exit', common.mustCall(checkExit));
|
|
break;
|
|
case 'fork':
|
|
spawn(process.execPath, [__filename, 'spawn'])
|
|
.on('exit', common.mustCall(checkExit));
|
|
break;
|
|
case 'spawn':
|
|
break;
|
|
default:
|
|
common.fail();
|
|
}
|
|
|
|
function checkExit(statusCode) {
|
|
assert.strictEqual(statusCode, 0);
|
|
}
|