mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
617 B
32 lines
617 B
'use strict';
|
|
var common = require('../common.js');
|
|
var assert = require('assert');
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
thousands: [500],
|
|
});
|
|
|
|
function main(conf) {
|
|
var iterations = +conf.thousands * 1e3;
|
|
|
|
var timer = setTimeout(() => {}, 1);
|
|
for (var i = 0; i < iterations; i++) {
|
|
setTimeout(cb, 1);
|
|
}
|
|
var next = timer._idlePrev;
|
|
clearTimeout(timer);
|
|
|
|
bench.start();
|
|
|
|
for (var j = 0; j < iterations; j++) {
|
|
timer = next;
|
|
next = timer._idlePrev;
|
|
clearTimeout(timer);
|
|
}
|
|
|
|
bench.end(iterations / 1e3);
|
|
}
|
|
|
|
function cb() {
|
|
assert(false, 'Timer should not call callback');
|
|
}
|
|
|