summaryrefslogtreecommitdiff
path: root/test/parallel
diff options
context:
space:
mode:
authorStefan Budeanu <stefan@budeanu.com>2016-02-22 21:55:35 -0500
committerMichael Dawson <michael_dawson@ca.ibm.com>2016-02-25 14:28:39 -0500
commit23a584d5177f0dd24fe427ae7429433b385e1451 (patch)
tree93ab913b109ffe6734f9eb08372af5d84ae8c11c /test/parallel
parent7e51966b3238588398c08b7849fe92ca26e956dd (diff)
downloadnode-new-23a584d5177f0dd24fe427ae7429433b385e1451.tar.gz
test: allow passing args to executable
Add --node-args option that will pass arguments. PR-URL: https://github.com/nodejs/node/pull/5376 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'test/parallel')
-rw-r--r--test/parallel/test-cluster-debug-port.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/parallel/test-cluster-debug-port.js b/test/parallel/test-cluster-debug-port.js
index 076a59108b..e8f3f58b95 100644
--- a/test/parallel/test-cluster-debug-port.js
+++ b/test/parallel/test-cluster-debug-port.js
@@ -4,7 +4,6 @@ const assert = require('assert');
const cluster = require('cluster');
if (cluster.isMaster) {
- assert.strictEqual(process.execArgv.length, 0, 'run test with no args');
function checkExitCode(code, signal) {
assert.strictEqual(code, 0);