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),