blob: 8125850b424d845773c04e28fc2c0fdd3ec7d696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
'use strict';
require('../common');
const assert = require('assert');
const spawn = require('child_process').spawn;
if (process.argv[2] === 'child') {
process.stdout.write(JSON.stringify(process.execArgv));
} else {
const execArgv = ['--stack-size=256'];
const args = [__filename, 'child', 'arg0'];
const child = spawn(process.execPath, execArgv.concat(args));
let out = '';
child.stdout.on('data', function(chunk) {
out += chunk;
});
child.on('close', function() {
assert.deepStrictEqual(JSON.parse(out), execArgv);
});
}
|