Skip to content

Commit 18a235b

Browse files
bnoordhuisMylesBorins
authored andcommitted
test: make flaky pummel test more reliable
Increase the number of iterations from 1e4 to 1e5. Makes the test pass for me locally when previously it would fail 9 out of 10 times because the running time was not enough to smooth away the outliers. Fixes: #8744 PR-URL: #9241 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: not-an-aardvark <[email protected]>
1 parent a46c027 commit 18a235b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pummel/test-crypto-timing-safe-equal-benchmarks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function runOneBenchmark(...args) {
2828
}
2929

3030
function getTValue(compareFunc) {
31-
const numTrials = 10000;
31+
const numTrials = 1e5;
3232
const bufSize = 10000;
3333
// Perform benchmarks to verify that timingSafeEqual is actually timing-safe.
3434

0 commit comments

Comments
 (0)