mirror of
https://github.com/nodejs/node.git
synced 2025-05-20 17:41:40 +00:00

This reverts commit 78aa348f4e
.
Refs: https://github.com/nodejs/node/pull/31396
PR-URL: https://github.com/nodejs/node/pull/31722
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.enoughTestMem)
|
|
common.skip('Insufficient memory for HTTP benchmark test');
|
|
|
|
// Because the http 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('http',
|
|
[
|
|
'benchmarker=test-double-http',
|
|
'arg=string',
|
|
'c=1',
|
|
'chunkedEnc=true',
|
|
'chunks=0',
|
|
'dur=0.1',
|
|
'e=0',
|
|
'input=keep-alive',
|
|
'key=""',
|
|
'len=1',
|
|
'method=write',
|
|
'n=1',
|
|
'res=normal',
|
|
'type=asc',
|
|
'url=long',
|
|
'value=X-Powered-By',
|
|
'w=0',
|
|
],
|
|
{
|
|
NODEJS_BENCHMARK_ZERO_ALLOWED: 1,
|
|
duration: 0
|
|
});
|