mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/12326 Ref: https://github.com/nodejs/node/issues/12068 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com>v7.x
Joyee Cheung
8 years ago
committed by
Evan Lucas
2 changed files with 22 additions and 3 deletions
@ -0,0 +1,19 @@ |
|||
'use strict'; |
|||
|
|||
require('../common'); |
|||
|
|||
const assert = require('assert'); |
|||
const fork = require('child_process').fork; |
|||
const path = require('path'); |
|||
|
|||
const runjs = path.join(__dirname, '..', '..', 'benchmark', 'run.js'); |
|||
|
|||
const child = fork(runjs, ['--set', 'dur=0.1', |
|||
'--set', 'n=1', |
|||
'--set', 'len=1', |
|||
'child_process'], |
|||
{env: {NODEJS_BENCHMARK_ZERO_ALLOWED: 1}}); |
|||
child.on('exit', (code, signal) => { |
|||
assert.strictEqual(code, 0); |
|||
assert.strictEqual(signal, null); |
|||
}); |
Loading…
Reference in new issue