0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 14:33:11 +01:00
nodejs/benchmark/timers/timers-insert-unpooled.js
Ruben Bridgewater c713f079f1
benchmark: (timers) refactor
PR-URL: https://github.com/nodejs/node/pull/18320
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-02-01 10:49:03 +01:00

28 lines
561 B
JavaScript

'use strict';
const common = require('../common.js');
const assert = require('assert');
const bench = common.createBenchmark(main, {
millions: [1],
});
function main({ millions }) {
const iterations = millions * 1e6;
const timersList = [];
bench.start();
for (var i = 0; i < iterations; i++) {
timersList.push(setTimeout(cb, i + 1));
}
bench.end(iterations / 1e6);
for (var j = 0; j < iterations + 1; j++) {
clearTimeout(timersList[j]);
}
}
function cb() {
assert.fail(`Timer ${this._idleTimeout} should not call callback`);
}