Skip to content

Commit b5ef3af

Browse files
committed
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.
1 parent 4e9e259 commit b5ef3af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/comm/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1935,5 +1935,5 @@ mod sync_tests {
19351935
assert_eq!(tx.try_send(1), Sent);
19361936
});
19371937
assert_eq!(rx.recv(), 1);
1938-
})
1938+
} #[ignore(reason = "flaky on libnative")])
19391939
}

0 commit comments

Comments
 (0)