Skip to content

Commit

Permalink
test: allow slightly more diff in memory leak test
Browse files Browse the repository at this point in the history
Previous limit was too low for debug builds.
  • Loading branch information
targos committed Jan 7, 2024
1 parent 9570832 commit bc765d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-crypto-dh-leak.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ const after = process.memoryUsage.rss();

// RSS should stay the same, ceteris paribus, but allow for
// some slop because V8 mallocs memory during execution.
assert(after - before < 10 << 20, `before=${before} after=${after}`);
assert(after - before < 10 << 21, `before=${before} after=${after}`);

0 comments on commit bc765d0

Please sign in to comment.