Skip to content

Commit

Permalink
update ignore-windows comments
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Oct 28, 2022
1 parent 3321c2d commit 676e53f
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/tools/miri/tests/fail/data_race/stack_pop_race.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//@ignore-target-windows: Concurrency on Windows is not supported yet.
//@compile-flags: -Zmiri-preemption-rate=0
use std::thread;

Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/fail/panic/no_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// windows tls dtors go through libstd right now, thus this test
// cannot pass. When windows tls dtors go through the special magic
// windows linker section, we can run this test on windows again.
//@ignore-target-windows
//@ignore-target-windows: no-std not supported on Windows

// Plumbing to let us use `writeln!` to host stderr:

Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/concurrency/sync.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ignore-target-windows: Concurrency on Windows is not supported yet.
//@ignore-target-windows: Condvars on Windows are not supported yet.
//@compile-flags: -Zmiri-disable-isolation -Zmiri-strict-provenance

use std::sync::{Arc, Barrier, Condvar, Mutex, Once, RwLock};
Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/concurrency/sync_nopreempt.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ignore-target-windows: Concurrency on Windows is not supported yet.
//@ignore-target-windows: Condvars on Windows are not supported yet.
// We are making scheduler assumptions here.
//@compile-flags: -Zmiri-strict-provenance -Zmiri-preemption-rate=0

Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/no_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// windows tls dtors go through libstd right now, thus this test
// cannot pass. When windows tls dtors go through the special magic
// windows linker section, we can run this test on windows again.
//@ignore-target-windows
//@ignore-target-windows: no-std not supported on Windows

// Plumbing to let us use `writeln!` to host stdout:

Expand Down
2 changes: 1 addition & 1 deletion src/tools/miri/tests/pass/shims/env/current_exe.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@ignore-target-windows
//@ignore-target-windows: current_exe not supported on Windows
//@only-on-host: the Linux std implementation opens /proc/self/exe, which doesn't work cross-target
//@compile-flags: -Zmiri-disable-isolation
use std::env;
Expand Down
1 change: 0 additions & 1 deletion src/tools/miri/tests/pass/shims/sleep_long.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//@ignore-target-windows: no threads nor sleep on Windows
//@compile-flags: -Zmiri-ignore-leaks -Zmiri-disable-isolation
use std::sync::{Arc, Mutex};
use std::thread;
Expand Down

0 comments on commit 676e53f

Please sign in to comment.