Skip to content

Commit ca8db41

Browse files
aduh95danielleadams
authored andcommitted
benchmark,child_process: remove failing benchmark parameter
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>
1 parent 0e7f0c6 commit ca8db41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/child_process/child-process-read-ipc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (process.argv[2] === 'child') {
1313
const bench = common.createBenchmark(main, {
1414
len: [
1515
64, 256, 1024, 4096, 16384, 65536,
16-
65536 << 4, 65536 << 8,
16+
65536 << 4, 65536 << 6 - 1,
1717
],
1818
dur: [5]
1919
});

0 commit comments

Comments
 (0)