summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamal Marhubi <kamal@marhubi.com>2016-03-08 10:47:02 -0500
committerKamal Marhubi <kamal@marhubi.com>2016-03-08 10:47:02 -0500
commitce3cb89b0e6c8bee02076f325c52a7fd46725fdb (patch)
treef3e584fb69c9a2e48680663f63f1e252671b5f76
parent3f0c3e13a22379dccbe826336f1805a98cf6cecc (diff)
downloadnix-ce3cb89b0e6c8bee02076f325c52a7fd46725fdb.zip
tests: Disable test_sigwait on apple platforms
After #292 was merged, this flakiness remained. I observe it only on Darwin, hence the targetted disabling until there's been more investigation.
-rw-r--r--src/sys/signal.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/signal.rs b/src/sys/signal.rs
index cf3c9ecf..6fcdfdfe 100644
--- a/src/sys/signal.rs
+++ b/src/sys/signal.rs
@@ -292,6 +292,8 @@ mod tests {
assert!(!oldmask.contains(SIGUSR2).unwrap());
}
+ // TODO(#251): Re-enable after figuring out flakiness.
+ #[cfg(not(any(target_os = "macos", target_os = "ios")))]
#[test]
fn test_sigwait() {
let mut mask = SigSet::empty();