]> git.lizzy.rs Git - rust.git/commitdiff
Ignore a test which never completes on windows
authorAlex Crichton <alex@alexcrichton.com>
Sun, 27 Oct 2013 17:58:32 +0000 (10:58 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 27 Oct 2013 17:58:32 +0000 (10:58 -0700)
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.

src/libstd/rt/uv/uvio.rs

index dc202ecc174aed1fa656fa6299d22186226638c2..e0707a86f7bbc9c92deec68095bf16722781051c 100644 (file)
@@ -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();