From 3aff898acd9722f325c761d9faf6675a077853a7 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 16 Apr 2021 18:58:46 +0200 Subject: [PATCH 1/2] Disable test_no_options_big_input on Windows --- tests/by-util/test_cat.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_cat.rs b/tests/by-util/test_cat.rs index 7b4c9924e..f83d51328 100644 --- a/tests/by-util/test_cat.rs +++ b/tests/by-util/test_cat.rs @@ -26,6 +26,7 @@ fn test_no_options() { } #[test] +#[cfg(unix)] fn test_no_options_big_input() { for &n in &[ 0, From 58a2821dce70ed0d60704cbabb2924080f39f5f6 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Fri, 16 Apr 2021 19:44:40 +0200 Subject: [PATCH 2/2] Also disable on test_three_directories_and_file_and_stdin --- tests/by-util/test_cat.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/by-util/test_cat.rs b/tests/by-util/test_cat.rs index f83d51328..eb6cc9148 100644 --- a/tests/by-util/test_cat.rs +++ b/tests/by-util/test_cat.rs @@ -109,6 +109,7 @@ fn test_directory_and_file() { } #[test] +#[cfg(unix)] fn test_three_directories_and_file_and_stdin() { let s = TestScenario::new(util_name!()); s.fixtures.mkdir("test_directory3");