From b3d8344d1d88d7e60a9e68f9dd4a2bc18846a071 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Fri, 23 Feb 2024 05:23:39 +0100 Subject: [PATCH] split: don't flake even on exotic pipe buffer sizes --- tests/by-util/test_split.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_split.rs b/tests/by-util/test_split.rs index acb8ab561..4e98a046a 100644 --- a/tests/by-util/test_split.rs +++ b/tests/by-util/test_split.rs @@ -1068,6 +1068,7 @@ fn test_split_number_oversized_stdin() { new_ucmd!() .args(&["--number=3", "---io-blksize=600"]) .pipe_in_fixture("sixhundredfiftyonebytes.txt") + .ignore_stdin_write_error() .fails() .stderr_only("split: -: cannot determine input size\n"); }