Increase wait until threshold. Should hopefully make these tests more
authoranton <anton@openbsd.org>
Mon, 15 Jan 2024 06:51:54 +0000 (06:51 +0000)
committeranton <anton@openbsd.org>
Mon, 15 Jan 2024 06:51:54 +0000 (06:51 +0000)
stable.

regress/sys/netinet/carp/carp_subr

index e3456c7..312944f 100644 (file)
@@ -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))"