Skip to content

Commit

Permalink
Ignore the rt::io::signal tests
Browse files Browse the repository at this point in the history
These tests can reliably cause the stdtest process to never exit (all uv threads
are stuck in their event loops). Ignoring these for now

cc rust-lang#10096
  • Loading branch information
alexcrichton committed Oct 27, 2013
1 parent 950add4 commit 8efe1e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/libstd/rt/io/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ mod test {
}

#[test] #[cfg(unix)]
#[ignore] // FIXME(#10096) might cause deadlock on the bots
fn test_io_signal_smoketest() {
let mut signal = Listener::new();
signal.register(Interrupt);
Expand All @@ -172,6 +173,7 @@ mod test {
}

#[test] #[cfg(unix)]
#[ignore] // FIXME(#10096) might cause deadlock on the bots
fn test_io_signal_two_signal_one_signum() {
let mut s1 = Listener::new();
let mut s2 = Listener::new();
Expand All @@ -190,6 +192,7 @@ mod test {
}

#[test] #[cfg(unix)]
#[ignore] // FIXME(#10096) might cause deadlock on the bots
fn test_io_signal_unregister() {
let mut s1 = Listener::new();
let mut s2 = Listener::new();
Expand All @@ -205,6 +208,7 @@ mod test {

#[cfg(windows)]
#[test]
#[ignore] // FIXME(#10096) might cause deadlock on the bots
fn test_io_signal_invalid_signum() {
let mut s = Listener::new();
let mut called = false;
Expand Down

0 comments on commit 8efe1e8

Please sign in to comment.