mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 17:57:53 +00:00

Refs: https://github.com/nodejs/node/issues/12068 PR-URL: https://github.com/nodejs/node/pull/22335 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('vm',
|
|
[
|
|
'breakOnSigint=0',
|
|
'withSigintListener=0',
|
|
'n=1'
|
|
],
|
|
{ NODEJS_BENCHMARK_ZERO_ALLOWED: 1 });
|