summaryrefslogtreecommitdiff
path: root/benchmark/process/bench-hrtime.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/process/bench-hrtime.js')
-rw-r--r--benchmark/process/bench-hrtime.js28
1 files changed, 21 insertions, 7 deletions
diff --git a/benchmark/process/bench-hrtime.js b/benchmark/process/bench-hrtime.js
index 661dff43b0..8a2920a238 100644
--- a/benchmark/process/bench-hrtime.js
+++ b/benchmark/process/bench-hrtime.js
@@ -1,18 +1,32 @@
'use strict';
const common = require('../common');
+const assert = require('assert');
const bench = common.createBenchmark(main, {
- n: [1e6]
+ n: [1e6],
+ type: ['raw', 'diff']
});
-
function main(conf) {
- const n = conf.n >>> 0;
+ const n = conf.n | 0;
+ const hrtime = process.hrtime;
+ var noDead = hrtime();
+ var i;
- bench.start();
- for (var i = 0; i < n; i++) {
- process.hrtime();
+ if (conf.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);
}
- bench.end(n);
+
+ assert.ok(Array.isArray(noDead));
}