diff options
| author | bors <bors@rust-lang.org> | 2014-04-07 05:01:35 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-04-07 05:01:35 -0700 |
| commit | dd3e5531204840c62097d23c50e87b96b0dafdd1 (patch) | |
| tree | ac8440e18a5f64c1841a77d3beb6a02ac9334def /src/libstd | |
| parent | 8902ed0c6538bd9cf40348e923fed24654c4fa34 (diff) | |
| parent | b5ef3afd50a1f5dc8a0ecb9baf267b58b9176a7e (diff) | |
| download | rust-dd3e5531204840c62097d23c50e87b96b0dafdd1.tar.gz rust-dd3e5531204840c62097d23c50e87b96b0dafdd1.zip | |
auto merge of #13356 : alexcrichton/rust/ignore-flaky, r=huonw
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.rs | 2 |
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")]) } |
