]> git.lizzy.rs Git - rust.git/commitdiff
std: Ignore a flaky std::comm test
authorAlex Crichton <alex@alexcrichton.com>
Sun, 6 Apr 2014 07:41:25 +0000 (00:41 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 6 Apr 2014 07:41:25 +0000 (00:41 -0700)
This test relies on the parent to be descheduled before the child sends its
data. This has proved to be unreliable on libnative on the bots. It's a fairly
trivial test regardless, so ignoring it for now won't lose much.

src/libstd/comm/mod.rs

index d01c4913b32afdc623377ade8cafa00a424e4823..f210bfc88bc351d1574704f4e6549ee13e1f6bc1 100644 (file)
@@ -1935,5 +1935,5 @@ fn recv(rx: Receiver<~int>, i: int) {
             assert_eq!(tx.try_send(1), Sent);
         });
         assert_eq!(rx.recv(), 1);
-    })
+    } #[ignore(reason = "flaky on libnative")])
 }