mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 01:31:27 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
27 lines
698 B
JavaScript
27 lines
698 B
JavaScript
var assert = require('assert');
|
|
var child_process = require('child_process');
|
|
var spawn = child_process.spawn;
|
|
var fork = child_process.fork;
|
|
|
|
if (process.argv[2] === 'fork') {
|
|
process.stdout.write(JSON.stringify(process.execArgv), function() {
|
|
process.exit();
|
|
});
|
|
} else if (process.argv[2] === 'child') {
|
|
fork(__filename, ['fork']);
|
|
} else {
|
|
var execArgv = ['--harmony_proxies', '--stack-size=256'];
|
|
var args = [__filename, 'child', 'arg0'];
|
|
|
|
var child = spawn(process.execPath, execArgv.concat(args));
|
|
var out = '';
|
|
|
|
child.stdout.on('data', function (chunk) {
|
|
out += chunk;
|
|
});
|
|
|
|
child.on('exit', function () {
|
|
assert.deepEqual(JSON.parse(out), execArgv);
|
|
});
|
|
}
|