File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ mod test {
161
161
}
162
162
}
163
163
164
- #[ test] #[ cfg( unix) ]
164
+ #[ test] #[ cfg( unix, not ( target_os= "android" ) ) ] // FIXME(#10378)
165
165
fn test_io_signal_smoketest ( ) {
166
166
let mut signal = Listener :: new ( ) ;
167
167
signal. register ( Interrupt ) ;
@@ -173,7 +173,7 @@ mod test {
173
173
}
174
174
}
175
175
176
- #[ test] #[ cfg( unix) ]
176
+ #[ test] #[ cfg( unix, not ( target_os= "android" ) ) ] // FIXME(#10378)
177
177
fn test_io_signal_two_signal_one_signum ( ) {
178
178
let mut s1 = Listener :: new ( ) ;
179
179
let mut s2 = Listener :: new ( ) ;
@@ -191,7 +191,7 @@ mod test {
191
191
}
192
192
}
193
193
194
- #[ test] #[ cfg( unix) ]
194
+ #[ test] #[ cfg( unix, not ( target_os= "android" ) ) ] // FIXME(#10378)
195
195
fn test_io_signal_unregister ( ) {
196
196
let mut s1 = Listener :: new ( ) ;
197
197
let mut s2 = Listener :: new ( ) ;
You can’t perform that action at this time.
0 commit comments