mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
abd8ff6f78
- IBMi does not have the os.uptime implemented so skip otherwise CI tests fail. Signed-off-by: Michael Dawson <midawson@redhat.com> PR-URL: https://github.com/nodejs/node/pull/50286 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
39 lines
797 B
JavaScript
39 lines
797 B
JavaScript
'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');
|
|
}
|
|
}
|