From b5ef3afd50a1f5dc8a0ecb9baf267b58b9176a7e Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 6 Apr 2014 00:41:25 -0700 Subject: [PATCH] std: Ignore a flaky std::comm test 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/comm/mod.rs b/src/libstd/comm/mod.rs index d01c4913b32..f210bfc88bc 100644 --- a/src/libstd/comm/mod.rs +++ b/src/libstd/comm/mod.rs @@ -1935,5 +1935,5 @@ mod sync_tests { assert_eq!(tx.try_send(1), Sent); }); assert_eq!(rx.recv(), 1); - }) + } #[ignore(reason = "flaky on libnative")]) }