about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-06-27 10:30:12 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-06-30 08:04:40 +0000
commitd0bb9a73aa51322476a7efbfc9cd010f788932bb (patch)
treec0486ad79f8ff9cc1eaba31013d66496bf3686c6
parentbd3205c02b05568087ed724de3f878c8f826c622 (diff)
downloadrust-d0bb9a73aa51322476a7efbfc9cd010f788932bb.tar.gz
rust-d0bb9a73aa51322476a7efbfc9cd010f788932bb.zip
Try increasing the repetition limit
-rw-r--r--src/tools/miri/tests/pass/float.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass/float.rs b/src/tools/miri/tests/pass/float.rs
index 383579198bb..6b782f55359 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 {