mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 13:05:07 +00:00

Allows env vars to be passed through to child processes. This is needed for things like NODE_TEST_DIR or LD_LIBRARY_PATH if testing the shared library. PR-URL: https://github.com/nodejs/node/pull/14822 Refs: https://github.com/nodejs/node/pull/13390 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com>
26 lines
751 B
JavaScript
26 lines
751 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
// Minimal test for timers benchmarks. This makes sure the benchmarks aren't
|
|
// horribly broken but nothing more than that.
|
|
|
|
const assert = require('assert');
|
|
const fork = require('child_process').fork;
|
|
const path = require('path');
|
|
|
|
const runjs = path.join(__dirname, '..', '..', 'benchmark', 'run.js');
|
|
const argv = ['--set', 'type=depth',
|
|
'--set', 'millions=0.000001',
|
|
'--set', 'thousands=0.001',
|
|
'timers'];
|
|
|
|
const env = Object.assign({}, process.env,
|
|
{ NODEJS_BENCHMARK_ZERO_ALLOWED: 1 });
|
|
|
|
const child = fork(runjs, argv, { env });
|
|
child.on('exit', (code, signal) => {
|
|
assert.strictEqual(code, 0);
|
|
assert.strictEqual(signal, null);
|
|
});
|