Skip to content

Commit 4808947

Browse files
committed
temporarily disable tests on android and tagging issue number #10378
1 parent e3f9f45 commit 4808947

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/rt/io/signal.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ mod test {
161161
}
162162
}
163163

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

176-
#[test] #[cfg(unix)]
176+
#[test] #[cfg(unix, not(target_os="android"))] // FIXME(#10378)
177177
fn test_io_signal_two_signal_one_signum() {
178178
let mut s1 = Listener::new();
179179
let mut s2 = Listener::new();
@@ -191,7 +191,7 @@ mod test {
191191
}
192192
}
193193

194-
#[test] #[cfg(unix)]
194+
#[test] #[cfg(unix, not(target_os="android"))] // FIXME(#10378)
195195
fn test_io_signal_unregister() {
196196
let mut s1 = Listener::new();
197197
let mut s2 = Listener::new();

0 commit comments

Comments
 (0)