From 6f5f2be3923bdd8bfa0585ce59e87c216d22a4d0 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 25 Sep 2014 13:11:57 -0700 Subject: [PATCH] Ignore two I/O tests that are failing on the win32 bot --- src/libstd/io/net/pipe.rs | 1 + src/libstd/io/net/udp.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/libstd/io/net/pipe.rs b/src/libstd/io/net/pipe.rs index bdd58b07d8615..35d97df0c37b9 100644 --- a/src/libstd/io/net/pipe.rs +++ b/src/libstd/io/net/pipe.rs @@ -751,6 +751,7 @@ mod tests { assert!(a2.accept().is_ok()); }) + #[cfg(not(windows))] // FIXME #17553 iotest!(fn clone_accept_concurrent() { let addr = next_test_unix(); let l = UnixListener::bind(&addr); diff --git a/src/libstd/io/net/udp.rs b/src/libstd/io/net/udp.rs index 6689615f01b22..840fcff95f182 100644 --- a/src/libstd/io/net/udp.rs +++ b/src/libstd/io/net/udp.rs @@ -545,6 +545,7 @@ mod test { serv_rx.recv(); }) + #[cfg(not(windows))] // FIXME #17553 iotest!(fn recv_from_timeout() { let addr1 = next_test_ip4(); let addr2 = next_test_ip4();