artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e6a428a
)
Increase wait until threshold. Should hopefully make these tests more
author
anton
<anton@openbsd.org>
Mon, 15 Jan 2024 06:51:54 +0000
(06:51 +0000)
committer
anton
<anton@openbsd.org>
Mon, 15 Jan 2024 06:51:54 +0000
(06:51 +0000)
stable.
regress/sys/netinet/carp/carp_subr
patch
|
blob
|
history
diff --git
a/regress/sys/netinet/carp/carp_subr
b/regress/sys/netinet/carp/carp_subr
index
e3456c7
..
312944f
100644
(file)
--- 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))"