We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f3b46 commit 00a1d36Copy full SHA for 00a1d36
1 file changed
benchmark/common.js
@@ -31,8 +31,7 @@ function runBenchmarks() {
31
console.error(type + '/' + test);
32
test = path.resolve(dir, test);
33
34
- var a = process.execArgv || [];
35
- a.push(test);
+ var a = (process.execArgv || []).concat(test);
36
var child = spawn(process.execPath, a, { stdio: 'inherit' });
37
child.on('close', function(code) {
38
if (code)
0 commit comments