Skip to content

Commit fcdacce

Browse files
committed
fix some ignore-windows comments
1 parent 2dfa6c1 commit fcdacce

10 files changed

+10
-10
lines changed

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22
// error-pattern: unsupported operation: the main thread terminated without waiting for other threads
33

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

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22

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

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22

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

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22

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

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22

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

tests/compile-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: Concurrency on Windows is not supported yet.
1+
// ignore-windows: No libc on Windows
22

33
// Joining itself is undefined behavior.
44

tests/compile-fail/environ-gets-deallocated.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//ignore-windows: Windows does not have a global environ list that the program can access directly
1+
// ignore-windows: Windows does not have a global environ list that the program can access directly
22

33
#[cfg(target_os="linux")]
44
fn get_environ() -> *const *const u8 {

tests/run-pass/calloc.rs

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

33
#![feature(rustc_private)]
44

tests/run-pass/malloc.rs

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

33
#![feature(rustc_private)]
44

tests/run-pass/thread-local.rs

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

33
#![feature(rustc_private)]
44
extern crate libc;

0 commit comments

Comments
 (0)