summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-03-09 02:26:24 +0900
committerHomu <homu@barosl.com>2016-03-09 02:26:24 +0900
commitf848e2ce467878004946979fa174a1c0f85c3bad (patch)
tree49074c8d30e260a27a5c6c80163c967af45922ff /src
parent1380807f6965f019dd63d61fad6570fc70eadf66 (diff)
parentce3cb89b0e6c8bee02076f325c52a7fd46725fdb (diff)
downloadnix-f848e2ce467878004946979fa174a1c0f85c3bad.zip
Auto merge of #302 - kamalmarhubi:test_sigwait, r=posborne
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.
Diffstat (limited to 'src')
-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();