about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-04-06 00:41:25 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-04-06 00:41:25 -0700
commitb5ef3afd50a1f5dc8a0ecb9baf267b58b9176a7e (patch)
treef202e28845c62fe9746ffece07d97c96d880cd04 /src/libstd
parent4e9e25907b6c63e3bde3dd122160ec07ef1ba6b9 (diff)
downloadrust-b5ef3afd50a1f5dc8a0ecb9baf267b58b9176a7e.tar.gz
rust-b5ef3afd50a1f5dc8a0ecb9baf267b58b9176a7e.zip
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.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/comm/mod.rs2
1 files changed, 1 insertions, 1 deletions
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")])
 }