diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-10-27 10:58:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-10-27 10:58:32 -0700 |
| commit | 8455ad898cc20106251ddbff61e874abfcf95cbb (patch) | |
| tree | 86f025624ce80f514ab130a9793f79394f2139ed /src/libstd/rt | |
| parent | 28f4f65d0c1aa7b21c752ad9625dc9cc61a90da7 (diff) | |
| download | rust-8455ad898cc20106251ddbff61e874abfcf95cbb.tar.gz rust-8455ad898cc20106251ddbff61e874abfcf95cbb.zip | |
Ignore a test which never completes on windows
I'm not entirely sure why this is happening, but the server task is never seeing the second send of the client task, and this test will very reliably fail to complete on windows.
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/uv/uvio.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/rt/uv/uvio.rs b/src/libstd/rt/uv/uvio.rs index dc202ecc174..e0707a86f7b 100644 --- a/src/libstd/rt/uv/uvio.rs +++ b/src/libstd/rt/uv/uvio.rs @@ -2306,6 +2306,7 @@ fn test_read_read_read() { } #[test] +#[ignore(cfg(windows))] // FIXME(#10102) the server never sees the second send fn test_udp_twice() { do run_in_mt_newsched_task { let server_addr = next_test_ip4(); |
