benchmark: use smaller n value in some http tests

PR-URL: https://github.com/nodejs/node/pull/14002
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Peter Marshall 2017-06-30 13:41:39 +02:00 committed by Ruben Bridgewater
parent 4dc920af6e
commit 8a968e4ee7
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ const bench = common.createBenchmark(main, {
'foo\nbar', 'foo\nbar',
'\x7F' '\x7F'
], ],
n: [5e8], n: [1e6],
}); });
function main(conf) { function main(conf) {

View File

@ -37,7 +37,7 @@ const bench = common.createBenchmark(main, {
':alternate-protocol', // fast bailout ':alternate-protocol', // fast bailout
'alternate-protocol:' // slow bailout 'alternate-protocol:' // slow bailout
], ],
n: [5e8], n: [1e6],
}); });
function main(conf) { function main(conf) {