File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 279366a0b279658b52e646c637a56489e825ee67
2
+ refs/heads/master: 062b0fd2649e7de848996d1193e4b462db33b2b1
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: b6400f998497c3958f40997a71756ead344a776d
5
5
refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
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