tests: tail: increase delay for test_follow_name_multiple on macOS

* tests/by-util/test_tail.rs (test_follow_name_multiple): Increase
the delay on macOS to 2000ms to avoid intermittent failures due to
slower follow-name change detection on macOS CI.
This commit is contained in:
Sylvestre Ledru
2026-04-08 15:50:52 +02:00
committed by Daniel Hofstetter
parent 5605eac770
commit 252ec26f52
+3 -2
View File
@@ -649,8 +649,9 @@ fn test_follow_name_multiple() {
#[cfg(target_os = "linux")]
let delay = 100;
// unstable on macOS
#[cfg(not(target_os = "linux"))]
#[cfg(target_os = "macos")]
let delay = 2000;
#[cfg(not(any(target_os = "linux", target_os = "macos")))]
let delay = 1000;
child