Skip to content

Commit

Permalink
benchmark,child_process: remove failing benchmark parameter
Browse files Browse the repository at this point in the history
A 16 MiB strings seems to be too large to be send to the parent process,
making the whole benchmark throws.

PR-URL: #36295
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
aduh95 authored and targos committed May 1, 2021
1 parent f44b3c1 commit f28eea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/child_process/child-process-read-ipc.js
Expand Up @@ -13,7 +13,7 @@ if (process.argv[2] === 'child') {
const bench = common.createBenchmark(main, {
len: [
64, 256, 1024, 4096, 16384, 65536,
65536 << 4, 65536 << 8,
65536 << 4, 65536 << 6 - 1,
],
dur: [5]
});
Expand Down

0 comments on commit f28eea0

Please sign in to comment.