mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
c713f079f1
PR-URL: https://github.com/nodejs/node/pull/18320 Reviewed-By: James M Snell <jasnell@gmail.com>
28 lines
561 B
JavaScript
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`);
|
|
}
|