summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/fs/bench-statSync.js
blob: bd8754a6c3d0e3aee39995c8e090d3aa67f785f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
'use strict';

const common = require('../common');
const fs = require('fs');

const bench = common.createBenchmark(main, {
  n: [1e6],
  statSyncType: ['fstatSync', 'lstatSync', 'statSync']
});


function main({ n, statSyncType }) {
  const arg = (statSyncType === 'fstatSync' ?
    fs.openSync(__filename, 'r') :
    __dirname);
  const fn = fs[statSyncType];

  bench.start();
  for (var i = 0; i < n; i++) {
    fn(arg);
  }
  bench.end(n);

  if (statSyncType === 'fstat')
    fs.closeSync(arg);
}