summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
Diffstat (limited to 'regress')
-rw-r--r--regress/dynamic-forward.sh4
-rw-r--r--regress/test-exec.sh7
2 files changed, 8 insertions, 3 deletions
diff --git a/regress/dynamic-forward.sh b/regress/dynamic-forward.sh
index 3a6e5c1ef..392fc1978 100644
--- a/regress/dynamic-forward.sh
+++ b/regress/dynamic-forward.sh
@@ -3,8 +3,8 @@
3 3
4tid="dynamic forwarding" 4tid="dynamic forwarding"
5 5
6PORT=4242 6FWDPORT=`expr $PORT + 1`
7FWDPORT=4243 7
8DATA=/bin/ls${EXEEXT} 8DATA=/bin/ls${EXEEXT}
9 9
10if have_prog nc && nc -h 2>&1 | grep "proxy address" >/dev/null; then 10if have_prog nc && nc -h 2>&1 | grep "proxy address" >/dev/null; then
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index a184c16d1..b0ac64e9e 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -1,9 +1,14 @@
1# $OpenBSD: test-exec.sh,v 1.20 2004/06/22 22:45:52 dtucker Exp $ 1# $OpenBSD: test-exec.sh,v 1.20 2004/06/22 22:45:52 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4PORT=4242
5#SUDO=sudo 4#SUDO=sudo
6 5
6if [ ! -z "$TEST_SSH_PORT" ]; then
7 PORT="$TEST_SSH_PORT"
8else
9 PORT=4242
10fi
11
7if [ -x /usr/ucb/whoami ]; then 12if [ -x /usr/ucb/whoami ]; then
8 USER=`/usr/ucb/whoami` 13 USER=`/usr/ucb/whoami`
9elif whoami >/dev/null 2>&1; then 14elif whoami >/dev/null 2>&1; then