Skip to content

Commit e8921a8

Browse files
committed
fix tests
1 parent 2cd61e6 commit e8921a8

File tree

12 files changed

+0
-17
lines changed

12 files changed

+0
-17
lines changed

tests/fail/concurrency/thread_local_static_dealloc.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
2-
31
//! Ensure that thread-local statics get deallocated when the thread dies.
42
53
#![feature(thread_local)]

tests/fail/concurrency/too_few_args.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
2-
31
//! The thread function must have exactly one argument.
42
53
#![feature(rustc_private)]

tests/fail/concurrency/too_many_args.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
2-
31
//! The thread function must have exactly one argument.
42
53
#![feature(rustc_private)]

tests/fail/concurrency/unwind_top_of_stack.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
21
// compile-flags: -Zmiri-disable-abi-check
32

43
//! Unwinding past the top frame of a stack is Undefined Behavior.

tests/fail/data_race/fence_after_load.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// We want to control preemption here.
22
// compile-flags: -Zmiri-disable-isolation -Zmiri-preemption-rate=0
3-
// ignore-windows: Concurrency on Windows is not supported yet.
43
use std::sync::atomic::{fence, AtomicUsize, Ordering};
54
use std::sync::Arc;
65
use std::thread;

tests/fail/should-pass/cpp20_rwc_syncs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
21
// compile-flags: -Zmiri-ignore-leaks
32
// error-pattern: unreachable
43

tests/fail/weak_memory/racing_mixed_size.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
2-
31
#![feature(core_intrinsics)]
42

53
use std::sync::atomic::AtomicU32;

tests/fail/weak_memory/racing_mixed_size_read.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
2-
31
#![feature(core_intrinsics)]
42

53
use std::sync::atomic::AtomicU32;

tests/pass/0weak_memory_consistency.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
21
// compile-flags: -Zmiri-ignore-leaks -Zmiri-disable-stacked-borrows
32

43
// The following tests check whether our weak memory emulation produces

tests/pass/weak_memory/extra_cpp.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// ignore-windows: Concurrency on Windows is not supported yet.
21
// compile-flags: -Zmiri-ignore-leaks
32

43
// Tests operations not perfomable through C++'s atomic API

0 commit comments

Comments
 (0)