mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
f458e5b573
PR-URL: https://github.com/nodejs/node/pull/48931 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
66 lines
1.5 KiB
JavaScript
66 lines
1.5 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { finished } = require('node:stream/promises');
|
|
|
|
const reporter = require('../fixtures/empty-test-reporter');
|
|
|
|
const { describe, it } = require('node:test');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
numberOfSuites: [10, 100],
|
|
testsPerSuite: [10, 100, 1000],
|
|
testType: ['sync', 'async'],
|
|
concurrency: ['yes', 'no'],
|
|
}, {
|
|
// We don't want to test the reporter here
|
|
flags: ['--test-reporter=./benchmark/fixtures/empty-test-reporter.js'],
|
|
});
|
|
|
|
async function run({ numberOfSuites, testsPerSuite, testType, concurrency }) {
|
|
concurrency = concurrency === 'yes';
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
let avoidV8Optimization;
|
|
|
|
switch (testType) {
|
|
case 'sync': {
|
|
for (let i = 0; i < numberOfSuites; i++) {
|
|
describe(`${i}`, { concurrency }, () => {
|
|
for (let j = 0; j < testsPerSuite; j++) {
|
|
it(`${j}`, () => {
|
|
avoidV8Optimization = i;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case 'async': {
|
|
for (let i = 0; i < numberOfSuites; i++) {
|
|
describe(`${i}`, { concurrency }, () => {
|
|
for (let j = 0; j < testsPerSuite; j++) {
|
|
it(`${j}`, async () => {
|
|
avoidV8Optimization = i;
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
await finished(reporter);
|
|
|
|
return numberOfSuites * testsPerSuite;
|
|
}
|
|
|
|
function main(params) {
|
|
bench.start();
|
|
run(params).then((ops) => {
|
|
bench.end(ops);
|
|
});
|
|
}
|