mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
b5420c9577
Move benchmark tests (which are slow) out of the main test suite. We can hopefully add them to node-daily-master so that they are still run daily on CI. PR-URL: https://github.com/nodejs/node/pull/24265 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
770 B
JavaScript
30 lines
770 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
if (!common.enoughTestMem)
|
|
common.skip('Insufficient memory for TLS benchmark test');
|
|
|
|
// Because the TLS benchmarks use hardcoded ports, this should be in sequential
|
|
// rather than parallel to make sure it does not conflict with tests that choose
|
|
// random available ports.
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('tls',
|
|
[
|
|
'concurrency=1',
|
|
'dur=0.1',
|
|
'n=1',
|
|
'size=2',
|
|
'securing=SecurePair',
|
|
'type=asc'
|
|
],
|
|
{
|
|
NODEJS_BENCHMARK_ZERO_ALLOWED: 1,
|
|
duration: 0
|
|
});
|