mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 15:46:27 +00:00

Add very simple benchmarks for `fs.stat` and `fs.statSync` as well as `fs.lstat` and `fs.lstatSync` based on the `readdir` benchmarks. PR-URL: https://github.com/nodejs/node/pull/8338 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
24 lines
393 B
JavaScript
24 lines
393 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e4],
|
|
kind: ['lstat', 'stat']
|
|
});
|
|
|
|
|
|
function main(conf) {
|
|
const n = conf.n >>> 0;
|
|
|
|
bench.start();
|
|
(function r(cntr, fn) {
|
|
if (cntr-- <= 0)
|
|
return bench.end(n);
|
|
fn(__filename, function() {
|
|
r(cntr, fn);
|
|
});
|
|
}(n, fs[conf.kind]));
|
|
}
|