summaryrefslogtreecommitdiff
path: root/regress/sys
diff options
context:
space:
mode:
authorAnton Lindqvist <anton@cvs.openbsd.org>2024-01-15 06:51:55 +0000
committerAnton Lindqvist <anton@cvs.openbsd.org>2024-01-15 06:51:55 +0000
commitf15d9354da2a7509701900cbb76597b23f2af8ae (patch)
tree106c5a836a8eaf1883ea428025783bf1c5f7136d /regress/sys
parent65085b3db8e31b8e8494a6aaea52211ebc714eab (diff)
Increase wait until threshold. Should hopefully make these tests more
stable.
Diffstat (limited to 'regress/sys')
-rw-r--r--regress/sys/netinet/carp/carp_subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/sys/netinet/carp/carp_subr b/regress/sys/netinet/carp/carp_subr
index e3456c79df0..312944fdc2d 100644
--- a/regress/sys/netinet/carp/carp_subr
+++ b/regress/sys/netinet/carp/carp_subr
@@ -58,7 +58,7 @@ test()
wait_until() {
local _i=0
- while [ "$_i" -lt 8 ]; do
+ while [ "$_i" -lt 16 ]; do
sh -c "$@" && return 0
sleep 0.5
_i="$((_i + 1))"