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: nodejs#36295
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
aduh95 authored and cjihrig committed Dec 8, 2020
1 parent bb9e898 commit ca5163e
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 ca5163e

Please sign in to comment.