common.js needs to be loaded in all tests so that there is checking for variable leaks and possibly other things. However, it does not need to be assigned to a variable if nothing in common.js is referred to elsewhere in the test. PR-URL: https://github.com/nodejs/node/pull/4408 Reviewed-By: James M Snell <jasnell@gmail.com>
34 lines
721 B
JavaScript
34 lines
721 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
var fork = require('child_process').fork;
|
|
|
|
// Fork, then spawn. The spawned process should not hang.
|
|
switch (process.argv[2] || '') {
|
|
case '':
|
|
fork(__filename, ['fork']).on('exit', checkExit);
|
|
process.on('exit', haveExit);
|
|
break;
|
|
case 'fork':
|
|
spawn(process.execPath, [__filename, 'spawn']).on('exit', checkExit);
|
|
process.on('exit', haveExit);
|
|
break;
|
|
case 'spawn':
|
|
break;
|
|
default:
|
|
assert(0);
|
|
}
|
|
|
|
var seenExit = false;
|
|
|
|
function checkExit(statusCode) {
|
|
seenExit = true;
|
|
assert.equal(statusCode, 0);
|
|
process.nextTick(process.exit);
|
|
}
|
|
|
|
function haveExit() {
|
|
assert.equal(seenExit, true);
|
|
}
|