From d0bb9a73aa51322476a7efbfc9cd010f788932bb Mon Sep 17 00:00:00 2001 From: Oli Scherer Date: Fri, 27 Jun 2025 10:30:12 +0000 Subject: [PATCH] Try increasing the repetition limit --- src/tools/miri/tests/pass/float.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/miri/tests/pass/float.rs b/src/tools/miri/tests/pass/float.rs index 383579198bbe..6b782f55359a 100644 --- a/src/tools/miri/tests/pass/float.rs +++ b/src/tools/miri/tests/pass/float.rs @@ -1358,7 +1358,7 @@ fn test_min_max_nondet() { /// Ensure that if we call the closure often enough, we see both `true` and `false.` #[track_caller] fn ensure_both(f: impl Fn() -> bool) { - let rounds = 16; + let rounds = 32; let first = f(); for _ in 1..rounds { if f() != first {