Skip to content

Commit

Permalink
Merge pull request #4022 from RalfJung/linux-futex
Browse files Browse the repository at this point in the history
fix linux-futex test being accidentally disabled
  • Loading branch information
RalfJung authored Nov 10, 2024
2 parents f3cdb0b + e084ec5 commit 9b4fbeb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/pass-dep/concurrency/linux-futex.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//@only-target: linux
//@only-target: android
//@only-target: linux android
//@compile-flags: -Zmiri-disable-isolation

// FIXME(static_mut_refs): Do not allow `static_mut_refs` lint
Expand All @@ -8,8 +7,8 @@
use std::mem::MaybeUninit;
use std::ptr::{self, addr_of};
use std::sync::atomic::{AtomicI32, Ordering};
use std::thread;
use std::time::{Duration, Instant};
use std::{io, thread};

fn wake_nobody() {
let futex = 0;
Expand Down

0 comments on commit 9b4fbeb

Please sign in to comment.