We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd6f59 commit d946dceCopy full SHA for d946dce
tests/by-util/test_tail.rs
@@ -76,6 +76,9 @@ const FOLLOW_NAME_SHORT_EXP: &str = "follow_name_short.expected";
76
#[allow(dead_code)]
77
const FOLLOW_NAME_EXP: &str = "follow_name.expected";
78
79
+#[cfg(target_vendor = "apple")]
80
+const DEFAULT_SLEEP_INTERVAL_MILLIS: u64 = 1500;
81
+#[cfg(not(target_vendor = "apple"))]
82
const DEFAULT_SLEEP_INTERVAL_MILLIS: u64 = 1000;
83
84
// The binary integer "10000000" is *not* a valid UTF-8 encoding
@@ -1419,6 +1422,9 @@ fn test_retry6() {
1419
1422
.arg("existing")
1420
1423
.run_no_wait();
1421
1424
1425
+ #[cfg(target_vendor = "apple")]
1426
+ let delay = 1500;
1427
+ #[cfg(not(target_vendor = "apple"))]
1428
let delay = 1000;
1429
p.make_assertion_with_delay(delay).is_alive();
1430
0 commit comments