summaryrefslogtreecommitdiff
path: root/benchmark/http2/compat.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/http2/compat.js')
-rw-r--r--benchmark/http2/compat.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/benchmark/http2/compat.js b/benchmark/http2/compat.js
index 5d06ccf317..2c7e732b07 100644
--- a/benchmark/http2/compat.js
+++ b/benchmark/http2/compat.js
@@ -9,10 +9,11 @@ const bench = common.createBenchmark(main, {
requests: [100, 1000, 5000],
streams: [1, 10, 20, 40, 100, 200],
clients: [2],
- benchmarker: ['h2load']
+ benchmarker: ['test-double-http2'],
+ duration: 5
}, { flags: ['--no-warnings'] });
-function main({ requests, streams, clients }) {
+function main({ requests, streams, clients, duration }) {
const http2 = require('http2');
const server = http2.createServer();
server.on('request', (req, res) => {
@@ -29,7 +30,8 @@ function main({ requests, streams, clients }) {
requests,
maxConcurrentStreams: streams,
clients,
- threads: clients
+ threads: clients,
+ duration
}, () => { server.close(); });
});
}