increase timeout to match cfgmatch.sh

lets test pass under valgrind (on my workstation at least)
This commit is contained in:
Damien Miller 2018-07-13 11:38:59 +10:00
parent 6aa1bf475c
commit e46cfbd9db
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ start_client()
while test ! -f $pidfile ; do
sleep 1
n=`expr $n + 1`
if test $n -gt 5; then
if test $n -gt 60; then
kill $client_pid
fatal "timeout waiting for background ssh"
fi