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.
33 lines
615 B
33 lines
615 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [20e4],
|
|
statType: ['fstat', 'lstat', 'stat']
|
|
});
|
|
|
|
|
|
function main(conf) {
|
|
const n = conf.n >>> 0;
|
|
const statType = conf.statType;
|
|
var arg;
|
|
if (statType === 'fstat')
|
|
arg = fs.openSync(__filename, 'r');
|
|
else
|
|
arg = __filename;
|
|
|
|
bench.start();
|
|
(function r(cntr, fn) {
|
|
if (cntr-- <= 0) {
|
|
bench.end(n);
|
|
if (statType === 'fstat')
|
|
fs.closeSync(arg);
|
|
return;
|
|
}
|
|
fn(arg, function() {
|
|
r(cntr, fn);
|
|
});
|
|
}(n, fs[statType]));
|
|
}
|
|
|