From c6d9552e0343d3b96d2a2484aeb4c94f4e72e22a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 15 Mar 2018 08:17:21 -0700 Subject: [PATCH] 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 #43283 --- src/libstd/process.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index d5ac2d19e831f..c3bf2ae84fda2 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -1648,6 +1648,7 @@ mod tests { } #[test] + #[cfg_attr(target_os = "android", ignore)] // FIXME(#43283) fn test_process_output_fail_to_start() { match Command::new("/no-binary-by-this-name-should-exist").output() { Err(e) => assert_eq!(e.kind(), ErrorKind::NotFound),