Skip to content

Commit ce3cb89

Browse files
committed
tests: Disable test_sigwait on apple platforms
After nix-rust#292 was merged, this flakiness remained. I observe it only on Darwin, hence the targetted disabling until there's been more investigation.
1 parent 3f0c3e1 commit ce3cb89

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/sys/signal.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ mod tests {
292292
assert!(!oldmask.contains(SIGUSR2).unwrap());
293293
}
294294

295+
// TODO(#251): Re-enable after figuring out flakiness.
296+
#[cfg(not(any(target_os = "macos", target_os = "ios")))]
295297
#[test]
296298
fn test_sigwait() {
297299
let mut mask = SigSet::empty();

0 commit comments

Comments
 (0)