git: 19552d9749dd - stable/14 - tests/carp: make sleep interval in the wait loop smaller
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 10 May 2026 06:27:14 UTC
The branch stable/14 has been updated by zlei:
URL: https://cgit.FreeBSD.org/src/commit/?id=19552d9749dd87f296a33ad96cb4f225799fb15d
commit 19552d9749dd87f296a33ad96cb4f225799fb15d
Author: Gleb Smirnoff <glebius@FreeBSD.org>
AuthorDate: 2025-12-04 18:40:34 +0000
Commit: Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2026-05-10 06:25:56 +0000
tests/carp: make sleep interval in the wait loop smaller
Makes tests to finish slightly faster.
(cherry picked from commit e353cbffd600ae3c00c8584dddcabf9d0ae1202a)
(cherry picked from commit 332485a473724c7532690be34ed1be06d9521448)
---
tests/sys/netinet/carp.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/sys/netinet/carp.sh b/tests/sys/netinet/carp.sh
index b861fcf47eab..4d58bcf03c12 100755
--- a/tests/sys/netinet/carp.sh
+++ b/tests/sys/netinet/carp.sh
@@ -43,7 +43,7 @@ wait_for_carp()
while [ -z "$(is_master ${jail1} ${itf1})" ] &&
[ -z "$(is_master ${jail2} ${itf2})" ]; do
- sleep 1
+ sleep 0.1
done
if [ -n "$(is_master ${jail1} ${itf1})" ] &&