From ce3cb89b0e6c8bee02076f325c52a7fd46725fdb Mon Sep 17 00:00:00 2001 From: Kamal Marhubi Date: Tue, 8 Mar 2016 10:47:02 -0500 Subject: [PATCH] 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. --- src/sys/signal.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sys/signal.rs b/src/sys/signal.rs index cf3c9ecf68..6fcdfdfe71 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();