diff options
| author | bors <bors@rust-lang.org> | 2014-01-13 21:51:37 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-13 21:51:37 -0800 |
| commit | 900893112570eea5a01c0573ae1fa1e3a72397e9 (patch) | |
| tree | fcd80f52d701ba691f6eac4716425d9bb82e386b /src/libstd | |
| parent | b11c3e3829d61f7a9165f9b6a14a0e5c9a9626f1 (diff) | |
| parent | 062b0fd2649e7de848996d1193e4b462db33b2b1 (diff) | |
auto merge of #11531 : brson/rust/yetmoreandroidfixes, r=alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/net/tcp.rs | 3 | ||||
| -rw-r--r-- | src/libstd/io/net/udp.rs | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/libstd/io/net/tcp.rs b/src/libstd/io/net/tcp.rs index 023a9bddca9..b901ea99cbe 100644 --- a/src/libstd/io/net/tcp.rs +++ b/src/libstd/io/net/tcp.rs @@ -136,6 +136,7 @@ mod test { use io::*; use prelude::*; + // FIXME #11530 this fails on android because tests are run as root iotest!(fn bind_error() { let mut called = false; io_error::cond.trap(|e| { @@ -147,7 +148,7 @@ mod test { assert!(listener.is_none()); }); assert!(called); - } #[ignore(cfg(windows))]) + } #[ignore(cfg(windows))] #[ignore(cfg(target_os = "android"))]) iotest!(fn connect_error() { let mut called = false; diff --git a/src/libstd/io/net/udp.rs b/src/libstd/io/net/udp.rs index 8a866c2a357..952ca7f730e 100644 --- a/src/libstd/io/net/udp.rs +++ b/src/libstd/io/net/udp.rs @@ -99,6 +99,7 @@ mod test { use super::*; use io::net::ip::{SocketAddr}; + // FIXME #11530 this fails on android because tests are run as root iotest!(fn bind_error() { let mut called = false; io_error::cond.trap(|e| { @@ -110,7 +111,7 @@ mod test { assert!(socket.is_none()); }); assert!(called); - } #[ignore(cfg(windows))]) + } #[ignore(cfg(windows))] #[ignore(cfg(target_os = "android"))]) iotest!(fn socket_smoke_test_ip4() { let server_ip = next_test_ip4(); |
