Skip to content

Commit 5a4d71f

Browse files
committed
Auto merge of #2379 - RalfJung:ui-test-target-filter, r=oli-obk
ui_test: more robust syntax for target filtering Implicit fallbacks are always fragile and prone to typos, so let's be explicit.
2 parents 0a0a15a + 090f289 commit 5a4d71f

File tree

103 files changed

+115
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+115
-113
lines changed

tests/fail/concurrency/libc_pthread_create_main_terminate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22
//@error-pattern: the main thread terminated without waiting for all remaining threads
33

44
// Check that we terminate the program when the main thread terminates.

tests/fail/concurrency/libc_pthread_join_detached.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22

33
// Joining a detached thread is undefined behavior.
44

tests/fail/concurrency/libc_pthread_join_joined.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22

33
// Joining an already joined thread is undefined behavior.
44

tests/fail/concurrency/libc_pthread_join_main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22

33
// Joining the main thread is undefined behavior.
44

tests/fail/concurrency/libc_pthread_join_multiple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22

33
// Joining the same thread from multiple threads is undefined behavior.
44

tests/fail/concurrency/libc_pthread_join_self.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: No libc on Windows
1+
//@ignore-target-windows: No libc on Windows
22
// We are making scheduler assumptions here.
33
//@compile-flags: -Zmiri-preemption-rate=0
44

tests/fail/concurrency/thread-spawn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@only-windows: Only Windows is not supported.
1+
//@only-target-windows: Only Windows is not supported.
22

33
use std::thread;
44

tests/fail/concurrency/thread_local_static_dealloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: Concurrency on Windows is not supported yet.
1+
//@ignore-target-windows: Concurrency on Windows is not supported yet.
22

33
//! Ensure that thread-local statics get deallocated when the thread dies.
44

tests/fail/concurrency/too_few_args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: Concurrency on Windows is not supported yet.
1+
//@ignore-target-windows: Concurrency on Windows is not supported yet.
22

33
//! The thread function must have exactly one argument.
44

tests/fail/concurrency/too_many_args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ignore-windows: Concurrency on Windows is not supported yet.
1+
//@ignore-target-windows: Concurrency on Windows is not supported yet.
22

33
//! The thread function must have exactly one argument.
44

0 commit comments

Comments
 (0)