summaryrefslogtreecommitdiff
path: root/benchmark/timers/timers-cancel-unpooled.js
blob: 158667311330a4e5e856027e81cd8eae21561861 (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
'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 = [];
  for (var i = 0; i < iterations; i++) {
    timersList.push(setTimeout(cb, i + 1));
  }

  bench.start();
  for (var j = 0; j < iterations + 1; j++) {
    clearTimeout(timersList[j]);
  }
  bench.end(iterations / 1e6);
}

function cb() {
  assert.fail(`Timer ${this._idleTimeout} should not call callback`);
}