diff options
| author | bors <bors@rust-lang.org> | 2015-08-10 17:06:15 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-10 17:06:15 +0000 |
| commit | 96a1f40402cdd05d29d1f1c0b62001254db8dcf6 (patch) | |
| tree | 99e46892ec8e4bd13fd6cc37f74833ff84e5bfd8 /src/libstd/sys | |
| parent | 1db1417736fa9d682fb0c3e36d37c123c2944a17 (diff) | |
| parent | 4ac7e87c7ca53baac4c4fec716d8e89977099cf3 (diff) | |
| download | rust-96a1f40402cdd05d29d1f1c0b62001254db8dcf6.tar.gz rust-96a1f40402cdd05d29d1f1c0b62001254db8dcf6.zip | |
Auto merge of #27516 - alexcrichton:osx-flaky-zomg, r=brson
The investigation into #14232 discovered that it's possible that signal delivery to a newly spawned process is racy on OSX. This test has been failing spuriously on the OSX bots for some time now, so ignore it as we don't currently know a solution and it looks like it may be out of our control.
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/unix/process.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstd/sys/unix/process.rs b/src/libstd/sys/unix/process.rs index 2a365cff6cb..59798e938a6 100644 --- a/src/libstd/sys/unix/process.rs +++ b/src/libstd/sys/unix/process.rs @@ -463,7 +463,11 @@ mod tests { return 0; } + // See #14232 for more information, but it appears that signal delivery to a + // newly spawned process may just be raced in the OSX, so to prevent this + // test from being flaky we ignore it on OSX. #[test] + #[cfg_attr(target_os = "macos", ignore)] fn test_process_mask() { unsafe { // Test to make sure that a signal mask does not get inherited. |
