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.
22 lines
327 B
22 lines
327 B
12 years ago
|
|
||
|
var common = require('../common.js');
|
||
|
var bench = common.createBenchmark(main, {
|
||
|
millions: [2]
|
||
|
});
|
||
|
|
||
|
function main(conf) {
|
||
|
var N = +conf.millions * 1e6;
|
||
|
var n = 0;
|
||
|
|
||
|
function cb() {
|
||
|
n++;
|
||
|
if (n === N)
|
||
|
bench.end(n / 1e6);
|
||
|
}
|
||
|
|
||
|
bench.start();
|
||
|
for (var i = 0; i < N; i++) {
|
||
|
process.nextTick(cb);
|
||
|
}
|
||
|
}
|