From 8478570c042c0f9b4a82e88e9b669e60bca346c0 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 4 Oct 2022 10:14:43 +0200 Subject: [PATCH] Disable test_when_piped_input_then_no_broken_pipe by default It is blocking the executions of the tests and I suspect it is breaking android --- tests/common/util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/common/util.rs b/tests/common/util.rs index 2597af2c1..932ae1c31 100644 --- a/tests/common/util.rs +++ b/tests/common/util.rs @@ -1843,6 +1843,7 @@ mod tests { // should fail with any command that takes piped input. // See also https://github.com/uutils/coreutils/issues/3895 #[test] + #[cfg_attr(not(feature = "expensive_tests"), ignore)] fn test_when_piped_input_then_no_broken_pipe() { let ts = TestScenario::new("tail"); for i in 0..10000 {