forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuptime.js
More file actions
38 lines (31 loc) · 797 Bytes
/
uptime.js
File metadata and controls
38 lines (31 loc) · 797 Bytes
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
32
33
34
35
36
37
38
'use strict';
const os = require('os');
const common = require('../common.js');
const assert = require('assert');
const uptime = os.uptime;
const bench = common.createBenchmark(main, {
n: [1e5],
});
function main({ n }) {
if (os.type() === 'OS400') {
console.log('Skipping: os.uptime is not implemented on IBMi');
process.exit(0);
}
// Warm up.
const length = 1024;
const array = [];
for (let i = 0; i < length; ++i) {
array.push(uptime());
}
bench.start();
for (let i = 0; i < n; ++i) {
const index = i % length;
array[index] = uptime();
}
bench.end(n);
// Verify the entries to prevent dead code elimination from making
// the benchmark invalid.
for (let i = 0; i < length; ++i) {
assert.strictEqual(typeof array[i], 'number');
}
}