Skip to content

Commit 4698db1

Browse files
committed
Try increasing the repetition limit
1 parent b144fa6 commit 4698db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/miri/tests/pass/float.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ fn test_min_max_nondet() {
13581358
/// Ensure that if we call the closure often enough, we see both `true` and `false.`
13591359
#[track_caller]
13601360
fn ensure_both(f: impl Fn() -> bool) {
1361-
let rounds = 16;
1361+
let rounds = 32;
13621362
let first = f();
13631363
for _ in 1..rounds {
13641364
if f() != first {

0 commit comments

Comments
 (0)