diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-09-25 13:11:57 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-09-25 20:49:15 -0700 |
| commit | 6f5f2be3923bdd8bfa0585ce59e87c216d22a4d0 (patch) | |
| tree | 99cad03f396539639107799dec541ffad31ffd2f /src/libstd | |
| parent | 3be6a2fba8bc3382df4b5a4f9391d9b2f28de9d1 (diff) | |
| download | rust-6f5f2be3923bdd8bfa0585ce59e87c216d22a4d0.tar.gz rust-6f5f2be3923bdd8bfa0585ce59e87c216d22a4d0.zip | |
Ignore two I/O tests that are failing on the win32 bot
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/net/pipe.rs | 1 | ||||
| -rw-r--r-- | src/libstd/io/net/udp.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/io/net/pipe.rs b/src/libstd/io/net/pipe.rs index bdd58b07d86..35d97df0c37 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 6689615f01b..840fcff95f1 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(); |
