Skip to content

Commit cd12440

Browse files
committed
give macOS some extra time, it needs that
1 parent a0c8b09 commit cd12440

File tree

1 file changed

+1
-1
lines changed
  • src/tools/miri/tests/pass/concurrency

1 file changed

+1
-1
lines changed

src/tools/miri/tests/pass/concurrency/sync.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fn check_conditional_variables_timed_wait_notimeout() {
8383
cvar.notify_one();
8484
});
8585

86-
let (_guard, timeout) = cvar.wait_timeout(guard, Duration::from_millis(500)).unwrap();
86+
let (_guard, timeout) = cvar.wait_timeout(guard, Duration::from_millis(1000)).unwrap();
8787
assert!(!timeout.timed_out());
8888
handle.join().unwrap();
8989
}

0 commit comments

Comments
 (0)