node/test/parallel/test-process-argv-0.js
Rich Trott 9faf4c6fcf test: load common.js to test for global leaks
common.js contains code that checks for variables leaking into the
global namespace. Load common.js in all tests that do not
intentionally leak variables.

PR-URL: https://github.com/nodejs/node/pull/3095
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
2015-10-02 13:39:27 +10:00

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]);
}