* mac: increase tail test delays to fix intermittent failure

This commit is contained in:
Sylvestre Ledru
2025-12-28 20:35:26 +01:00
committed by GitHub
parent acd6f598a5
commit d946dce1a9
+6
View File
@@ -76,6 +76,9 @@ const FOLLOW_NAME_SHORT_EXP: &str = "follow_name_short.expected";
#[allow(dead_code)]
const FOLLOW_NAME_EXP: &str = "follow_name.expected";
#[cfg(target_vendor = "apple")]
const DEFAULT_SLEEP_INTERVAL_MILLIS: u64 = 1500;
#[cfg(not(target_vendor = "apple"))]
const DEFAULT_SLEEP_INTERVAL_MILLIS: u64 = 1000;
// The binary integer "10000000" is *not* a valid UTF-8 encoding
@@ -1419,6 +1422,9 @@ fn test_retry6() {
.arg("existing")
.run_no_wait();
#[cfg(target_vendor = "apple")]
let delay = 1500;
#[cfg(not(target_vendor = "apple"))]
let delay = 1000;
p.make_assertion_with_delay(delay).is_alive();