summaryrefslogtreecommitdiff
path: root/benchmark/process/bench-hrtime.js
blob: 9152a32b22d21362f227de41635ed8de00181ba5 (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
27
28
29
30
31
'use strict';

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

const bench = common.createBenchmark(main, {
  n: [1e6],
  type: ['raw', 'diff']
});

function main({ n, type }) {
  const hrtime = process.hrtime;
  var noDead = hrtime();
  var i;

  if (type === 'raw') {
    bench.start();
    for (i = 0; i < n; i++) {
      noDead = hrtime();
    }
    bench.end(n);
  } else {
    bench.start();
    for (i = 0; i < n; i++) {
      noDead = hrtime(noDead);
    }
    bench.end(n);
  }

  assert.ok(Array.isArray(noDead));
}