summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-insert-unpooled.js
blob: efe8e9aaa579c2a3024573bac7d3169a548bf27b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict';
const common = require('../common.js');
const assert = require('assert');

const bench = common.createBenchmark(main, {
  millions: [1],
});

function main(conf) {
  const iterations = +conf.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(false, `Timer ${this._idleTimeout} should not call callback`);
}