Skip to content

Commit

Permalink
temporarily disable tests on android and tagging issue number #10378
Browse files Browse the repository at this point in the history
  • Loading branch information
yichoi committed Nov 10, 2013
1 parent e3f9f45 commit 4808947
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libstd/rt/io/signal.rs
Expand Up @@ -161,7 +161,7 @@ mod test {
}
}

#[test] #[cfg(unix)]
#[test] #[cfg(unix, not(target_os="android"))] // FIXME(#10378)
fn test_io_signal_smoketest() {
let mut signal = Listener::new();
signal.register(Interrupt);
Expand All @@ -173,7 +173,7 @@ mod test {
}
}

#[test] #[cfg(unix)]
#[test] #[cfg(unix, not(target_os="android"))] // FIXME(#10378)
fn test_io_signal_two_signal_one_signum() {
let mut s1 = Listener::new();
let mut s2 = Listener::new();
Expand All @@ -191,7 +191,7 @@ mod test {
}
}

#[test] #[cfg(unix)]
#[test] #[cfg(unix, not(target_os="android"))] // FIXME(#10378)
fn test_io_signal_unregister() {
let mut s1 = Listener::new();
let mut s2 = Listener::new();
Expand Down

0 comments on commit 4808947

Please sign in to comment.