From: anton Date: Mon, 15 Jan 2024 06:51:54 +0000 (+0000) Subject: Increase wait until threshold. Should hopefully make these tests more X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d8d0011270296f4a0afe72a2fa8dae9f1af4cf5c;p=openbsd Increase wait until threshold. Should hopefully make these tests more stable. --- 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))"