mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
5b63d48e9e
This change is in preparation for lint-enforced brace style. PR-URL: https://github.com/nodejs/node/pull/7630 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
22 lines
524 B
JavaScript
22 lines
524 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var path = require('path');
|
|
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] !== 'child') {
|
|
var child = spawn(process.execPath, [__filename, 'child'], {
|
|
cwd: path.dirname(process.execPath)
|
|
});
|
|
|
|
var childArgv0 = '';
|
|
child.stdout.on('data', function(chunk) {
|
|
childArgv0 += chunk;
|
|
});
|
|
process.on('exit', function() {
|
|
assert.equal(childArgv0, process.execPath);
|
|
});
|
|
} else {
|
|
process.stdout.write(process.argv[0]);
|
|
}
|