Skip to content

Commit c6d9552

Browse files
committedMar 15, 2018
std: Ignore a flaky test on Android
I don't think we're getting much benefit from having a flaky test fail on us every now and then. Unfortunately it seems like we have no idea why this is flaky and infinitely blocking sometimes, so let's ignore it for now on Android but continue to run it on other platforms. cc rust-lang#43283
1 parent a4af6f0 commit c6d9552

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/libstd/process.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1648,6 +1648,7 @@ mod tests {
16481648
}
16491649

16501650
#[test]
1651+
#[cfg_attr(target_os = "android", ignore)] // FIXME(#43283)
16511652
fn test_process_output_fail_to_start() {
16521653
match Command::new("/no-binary-by-this-name-should-exist").output() {
16531654
Err(e) => assert_eq!(e.kind(), ErrorKind::NotFound),

0 commit comments

Comments
 (0)
Please sign in to comment.