mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
58d26e2421
Modified fs benchmarks to use more unique args to avoid collision. PR-URL: https://github.com/nodejs/node/pull/16049 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
34 lines
615 B
JavaScript
34 lines
615 B
JavaScript
'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]));
|
|
}
|