Commit 062b0fd 1 parent 279366a commit 062b0fd Copy full SHA for 062b0fd
File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ mod test {
136
136
use io:: * ;
137
137
use prelude:: * ;
138
138
139
+ // FIXME #11530 this fails on android because tests are run as root
139
140
iotest ! ( fn bind_error( ) {
140
141
let mut called = false ;
141
142
io_error:: cond. trap( |e| {
@@ -147,7 +148,7 @@ mod test {
147
148
assert!( listener. is_none( ) ) ;
148
149
} ) ;
149
150
assert!( called) ;
150
- } #[ ignore( cfg( windows) ) ] )
151
+ } #[ ignore( cfg( windows) ) ] # [ ignore ( cfg ( target_os = "android" ) ) ] )
151
152
152
153
iotest ! ( fn connect_error( ) {
153
154
let mut called = false ;
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ mod test {
99
99
use super :: * ;
100
100
use io:: net:: ip:: { SocketAddr } ;
101
101
102
+ // FIXME #11530 this fails on android because tests are run as root
102
103
iotest ! ( fn bind_error( ) {
103
104
let mut called = false ;
104
105
io_error:: cond. trap( |e| {
@@ -110,7 +111,7 @@ mod test {
110
111
assert!( socket. is_none( ) ) ;
111
112
} ) ;
112
113
assert!( called) ;
113
- } #[ ignore( cfg( windows) ) ] )
114
+ } #[ ignore( cfg( windows) ) ] # [ ignore ( cfg ( target_os = "android" ) ) ] )
114
115
115
116
iotest ! ( fn socket_smoke_test_ip4( ) {
116
117
let server_ip = next_test_ip4( ) ;
You can’t perform that action at this time.
0 commit comments