summaryrefslogtreecommitdiff
path: root/regress/dynamic-forward.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-05-20 19:08:40 +1000
committerDamien Miller <djm@mindrot.org>2011-05-20 19:08:40 +1000
commitacacced70b3fd520ee3f12d3f477f9fd7c2f687a (patch)
tree5eed98650b6fcbc3218d790bc5a415e6a76964af /regress/dynamic-forward.sh
parent7b9451f382156bdc20945a63c1507a466959fab1 (diff)
- dtucker@cvs.openbsd.org 2011/05/20 06:32:30
[dynamic-forward.sh] fix dumb error in dynamic-forward test
Diffstat (limited to 'regress/dynamic-forward.sh')
-rw-r--r--regress/dynamic-forward.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/dynamic-forward.sh b/regress/dynamic-forward.sh
index 12ddef3a5..d6df4491a 100644
--- a/regress/dynamic-forward.sh
+++ b/regress/dynamic-forward.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: dynamic-forward.sh,v 1.5 2011/05/20 05:19:50 dtucker Exp $ 1# $OpenBSD: dynamic-forward.sh,v 1.6 2011/05/20 06:32:30 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="dynamic forwarding" 4tid="dynamic forwarding"
@@ -31,7 +31,7 @@ for p in 1 2; do
31 while test ! -f $OBJ/remote_pid; do 31 while test ! -f $OBJ/remote_pid; do
32 sleep 1 32 sleep 1
33 n=`expr $n + 1` 33 n=`expr $n + 1`
34 if test $n > 60; then 34 if test $n -gt 60; then
35 kill $client_pid 35 kill $client_pid
36 fail "Timed out waiting for client to connect" 36 fail "Timed out waiting for client to connect"
37 fi 37 fi