Skip to content

Commit f848e2c

Browse files
committed
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.
2 parents 1380807 + ce3cb89 commit f848e2c

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)