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.
28 lines
738 B
28 lines
738 B
'use strict';
|
|
require('../common');
|
|
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.deepStrictEqual(JSON.parse(out), execArgv);
|
|
});
|
|
}
|
|
|