Skip to content

Commit

Permalink
Auto merge of rust-lang#302 - kamalmarhubi:test_sigwait, r=posborne
Browse files Browse the repository at this point in the history
tests: Disable test_sigwait on apple platforms

After rust-lang#292 was merged, this flakiness remained. I observe it only on
Darwin, hence the targetted disabling until there's been more
investigation.
  • Loading branch information
homu committed Mar 8, 2016
2 parents 1380807 + ce3cb89 commit f848e2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sys/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit f848e2c

Please sign in to comment.