temporarily disable tests on android and tagging issue number #10378
This commit is contained in:
parent
e3f9f45439
commit
480894796a
@ -161,7 +161,7 @@ fn sigint() {
|
||||
}
|
||||
}
|
||||
|
||||
#[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);
|
||||
@ -173,7 +173,7 @@ fn test_io_signal_smoketest() {
|
||||
}
|
||||
}
|
||||
|
||||
#[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();
|
||||
@ -191,7 +191,7 @@ fn test_io_signal_two_signal_one_signum() {
|
||||
}
|
||||
}
|
||||
|
||||
#[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();
|
||||
|
Loading…
Reference in New Issue
Block a user