Auto merge of #1462 - RalfJung:ignore-windows, r=RalfJung

fix some ignore-windows comments

and make that more consistent
This commit is contained in:
bors 2020-06-28 18:41:17 +00:00
commit fd81012477
10 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// error-pattern: unsupported operation: the main thread terminated without waiting for other threads
// Check that we terminate the program when the main thread terminates.

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// Joining a detached thread is undefined behavior.

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// Joining an already joined thread is undefined behavior.

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// Joining the main thread is undefined behavior.

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// Joining the same thread from multiple threads is undefined behavior.

View File

@ -1,4 +1,4 @@
// ignore-windows: Concurrency on Windows is not supported yet.
// ignore-windows: No libc on Windows
// Joining itself is undefined behavior.

View File

@ -1,4 +1,4 @@
//ignore-windows: Windows does not have a global environ list that the program can access directly
// ignore-windows: Windows does not have a global environ list that the program can access directly
#[cfg(target_os="linux")]
fn get_environ() -> *const *const u8 {

View File

@ -1,4 +1,4 @@
//ignore-windows: Uses POSIX APIs
// ignore-windows: No libc on Windows
#![feature(rustc_private)]

View File

@ -1,4 +1,4 @@
//ignore-windows: Uses POSIX APIs
// ignore-windows: No libc on Windows
#![feature(rustc_private)]

View File

@ -1,4 +1,4 @@
//ignore-windows: Uses POSIX APIs
// ignore-windows: No libc on Windows
#![feature(rustc_private)]
extern crate libc;