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.
21 lines
538 B
21 lines
538 B
'use strict';
|
|
require('../common');
|
|
const path = require('path');
|
|
const assert = require('assert');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] !== 'child') {
|
|
const child = spawn(process.execPath, [__filename, 'child'], {
|
|
cwd: path.dirname(process.execPath)
|
|
});
|
|
|
|
let childArgv0 = '';
|
|
child.stdout.on('data', function(chunk) {
|
|
childArgv0 += chunk;
|
|
});
|
|
process.on('exit', function() {
|
|
assert.strictEqual(childArgv0, process.execPath);
|
|
});
|
|
} else {
|
|
process.stdout.write(process.argv[0]);
|
|
}
|
|
|