From 95092e64402cf5feadeb4d5f496cc1f8cbdd239e Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 23 May 2021 00:33:54 +0200 Subject: [PATCH] ignore test_should_calculate_implicit_padding_per_free_argument Fails from time to time with ``` ---- test_numfmt::test_should_calculate_implicit_padding_per_free_argument stdout ---- current_directory_resolved: run: /target/x86_64-unknown-linux-musl/debug/coreutils numfmt --from=auto 1Ki 2K thread 'test_numfmt::test_should_calculate_implicit_padding_per_free_argument' panicked at 'failed to write to stdin of child: Broken pipe (os error 32)', tests/common/util.rs:859:21 ``` --- tests/by-util/test_numfmt.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_numfmt.rs b/tests/by-util/test_numfmt.rs index 64fc5360d..b52dbc359 100644 --- a/tests/by-util/test_numfmt.rs +++ b/tests/by-util/test_numfmt.rs @@ -281,6 +281,7 @@ fn test_leading_whitespace_in_free_argument_should_imply_padding() { } #[test] +#[ignore] fn test_should_calculate_implicit_padding_per_free_argument() { new_ucmd!() .args(&["--from=auto", " 1Ki", " 2K"])