Skip to content

Commit 9f60709

Browse files
committed
Remove test
1 parent 0bca4e1 commit 9f60709

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/tools/miri/tests/pass-dep/concurrency/linux-futex.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -280,21 +280,6 @@ fn concurrent_wait_wake() {
280280
assert!(woken > 0 && woken < rounds);
281281
}
282282

283-
// Reproduce https://github.com/rust-lang/miri/issues/3647. This should not ICE.
284-
fn large_timeout() {
285-
let futex: i32 = 123;
286-
287-
unsafe {
288-
libc::syscall(
289-
libc::SYS_futex,
290-
addr_of!(futex),
291-
libc::FUTEX_WAIT,
292-
123,
293-
&libc::timespec { tv_sec: 184467440839020, tv_nsec: 117558982 },
294-
);
295-
}
296-
}
297-
298283
fn main() {
299284
wake_nobody();
300285
wake_dangling();
@@ -304,5 +289,4 @@ fn main() {
304289
wait_wake();
305290
wait_wake_bitset();
306291
concurrent_wait_wake();
307-
large_timeout();
308292
}

0 commit comments

Comments
 (0)