mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
1d2603b53f
PR-URL: https://github.com/nodejs/node/pull/54709 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
32 lines
654 B
JavaScript
32 lines
654 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const { tmpdir } = require('os');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e6],
|
|
});
|
|
|
|
function main({ n }) {
|
|
// Warm up.
|
|
const length = 1024;
|
|
const array = [];
|
|
for (let i = 0; i < length; ++i) {
|
|
array.push(tmpdir());
|
|
}
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i) {
|
|
const index = i % length;
|
|
array[index] = tmpdir();
|
|
}
|
|
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], 'string');
|
|
}
|
|
}
|