From 51c94d9ca88d5eb80f534cb119fbff1fafde9d6b Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 18 Mar 2026 21:43:32 +0100 Subject: [PATCH 1/2] tail: test_follow_name_multiple is intermittent on mac --- tests/by-util/test_tail.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/by-util/test_tail.rs b/tests/by-util/test_tail.rs index 0d328dfd724..a9172fa17cc 100644 --- a/tests/by-util/test_tail.rs +++ b/tests/by-util/test_tail.rs @@ -636,7 +636,10 @@ fn test_follow_multiple() { } #[test] -#[cfg(not(target_os = "windows"))] // FIXME: test times out +#[cfg(all( + not(target_vendor = "apple"), + not(target_os = "windows") +))] // FIXME: test times out fn test_follow_name_multiple() { // spell-checker:disable-next-line for argument in ["--follow=name", "--follo=nam", "--f=n"] { From 01a4f6d2ef312d85bbc6060fc8b2ecd156243dc4 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Wed, 18 Mar 2026 21:44:42 +0100 Subject: [PATCH 2/2] Fix cfg attribute formatting --- tests/by-util/test_tail.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/by-util/test_tail.rs b/tests/by-util/test_tail.rs index a9172fa17cc..f9583a646eb 100644 --- a/tests/by-util/test_tail.rs +++ b/tests/by-util/test_tail.rs @@ -636,10 +636,7 @@ fn test_follow_multiple() { } #[test] -#[cfg(all( - not(target_vendor = "apple"), - not(target_os = "windows") -))] // FIXME: test times out ++#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))] // FIXME: test times out fn test_follow_name_multiple() { // spell-checker:disable-next-line for argument in ["--follow=name", "--follo=nam", "--f=n"] {