aboutsummaryrefslogtreecommitdiff
path: root/benchmark/fs/bench-stat.js
blob: c0db00e27deee6cc42a0a3399fd392a0746f74f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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]));
}