mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 06:19:07 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
29 lines
731 B
JavaScript
29 lines
731 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const child_process = require('child_process');
|
|
const spawn = child_process.spawn;
|
|
const 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 {
|
|
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('exit', function() {
|
|
assert.deepStrictEqual(JSON.parse(out), execArgv);
|
|
});
|
|
}
|