summaryrefslogtreecommitdiff
path: root/regress/test-exec.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-06-23 09:28:20 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-06-23 09:28:20 +1000
commit3b9c0adaab5736a1b9f5d69a3bf471ff46b8b88f (patch)
treeabd105236803d78ec564e7f38be9ec74d7848027 /regress/test-exec.sh
parent6223eea5962535f2efe9789a9bc19ecca1539713 (diff)
- dtucker@cvs.openbsd.org 2004/06/22 22:55:56
[regress/dynamic-forward.sh regress/test-exec.sh] Allow setting of port for regress from TEST_SSH_PORT variable; ok markus@
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r--regress/test-exec.sh7
1 files changed, 6 insertions, 1 deletions
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