summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordtucker <dtucker@openbsd.org>2020-01-25 00:27:56 +0000
committerdtucker <dtucker@openbsd.org>2020-01-25 00:27:56 +0000
commit8d6500b0508d9519e2201804309cf3f97f68c6ac (patch)
tree0873c27adaae1668a74ab77d8525ac1a15cf988a
parentset UpdateKnownHosts=ask by default; bz#2894; ok markus@ (diff)
downloadwireguard-openbsd-8d6500b0508d9519e2201804309cf3f97f68c6ac.tar.xz
wireguard-openbsd-8d6500b0508d9519e2201804309cf3f97f68c6ac.zip
Wait a bit longer for the multiplex master to become ready since on very
slow hosts the current delay is not sufficient and the test will fail.
-rw-r--r--regress/usr.bin/ssh/multiplex.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/multiplex.sh b/regress/usr.bin/ssh/multiplex.sh
index 620f5a56e87..2238d7b97a4 100644
--- a/regress/usr.bin/ssh/multiplex.sh
+++ b/regress/usr.bin/ssh/multiplex.sh
@@ -1,4 +1,4 @@
-# $OpenBSD: multiplex.sh,v 1.30 2019/07/05 04:03:13 dtucker Exp $
+# $OpenBSD: multiplex.sh,v 1.31 2020/01/25 00:27:56 dtucker Exp $
# Placed in the Public Domain.
CTL=$OBJ/ctl-sock
@@ -10,7 +10,7 @@ P=3301 # test port
wait_for_mux_master_ready()
{
- for i in 1 2 3 4 5; do
+ for i in 1 2 3 4 5 6 7 8 9; do
${SSH} -F $OBJ/ssh_config -S $CTL -Ocheck otherhost \
>/dev/null 2>&1 && return 0
sleep $i