summaryrefslogtreecommitdiff
path: root/regress/test-exec.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-02-29 20:31:08 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-02-29 20:31:08 +1100
commit03c907a22b0ef594745699927d784c4ae9ec68b1 (patch)
tree5094d872c6c9d3c5d9b83ba942f0532b5c43487a /regress/test-exec.sh
parent017fd61a9266049f8bed8ef742992a75cd6ca33f (diff)
- markus@cvs.openbsd.org 2004/02/24 16:56:30
[regress/test-exec.sh] allow arguments in ${TEST_SSH_XXX}
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r--regress/test-exec.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 98851dc97..986d99287 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: test-exec.sh,v 1.14 2002/04/15 15:19:48 markus Exp $ 1# $OpenBSD: test-exec.sh,v 1.15 2004/02/24 16:56:30 markus Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4PORT=4242 4PORT=4242
@@ -49,28 +49,28 @@ SFTP=sftp
49SFTPSERVER=/usr/libexec/openssh/sftp-server 49SFTPSERVER=/usr/libexec/openssh/sftp-server
50 50
51if [ "x$TEST_SSH_SSH" != "x" ]; then 51if [ "x$TEST_SSH_SSH" != "x" ]; then
52 SSH=${TEST_SSH_SSH} 52 SSH="${TEST_SSH_SSH}"
53fi 53fi
54if [ "x$TEST_SSH_SSHD" != "x" ]; then 54if [ "x$TEST_SSH_SSHD" != "x" ]; then
55 SSHD=${TEST_SSH_SSHD} 55 SSHD="${TEST_SSH_SSHD}"
56fi 56fi
57if [ "x$TEST_SSH_SSHAGENT" != "x" ]; then 57if [ "x$TEST_SSH_SSHAGENT" != "x" ]; then
58 SSHAGENT=${TEST_SSH_SSHAGENT} 58 SSHAGENT="${TEST_SSH_SSHAGENT}"
59fi 59fi
60if [ "x$TEST_SSH_SSHADD" != "x" ]; then 60if [ "x$TEST_SSH_SSHADD" != "x" ]; then
61 SSHADD=${TEST_SSH_SSHADD} 61 SSHADD="${TEST_SSH_SSHADD}"
62fi 62fi
63if [ "x$TEST_SSH_SSHKEYGEN" != "x" ]; then 63if [ "x$TEST_SSH_SSHKEYGEN" != "x" ]; then
64 SSHKEYGEN=${TEST_SSH_SSHKEYGEN} 64 SSHKEYGEN="${TEST_SSH_SSHKEYGEN}"
65fi 65fi
66if [ "x$TEST_SSH_SSHKEYSCAN" != "x" ]; then 66if [ "x$TEST_SSH_SSHKEYSCAN" != "x" ]; then
67 SSHKEYSCAN=${TEST_SSH_SSHKEYSCAN} 67 SSHKEYSCAN="${TEST_SSH_SSHKEYSCAN}"
68fi 68fi
69if [ "x$TEST_SSH_SFTP" != "x" ]; then 69if [ "x$TEST_SSH_SFTP" != "x" ]; then
70 SFTP=${TEST_SSH_SFTP} 70 SFTP="${TEST_SSH_SFTP}"
71fi 71fi
72if [ "x$TEST_SSH_SFTPSERVER" != "x" ]; then 72if [ "x$TEST_SSH_SFTPSERVER" != "x" ]; then
73 SFTPSERVER=${TEST_SSH_SFTPSERVER} 73 SFTPSERVER="${TEST_SSH_SFTPSERVER}"
74fi 74fi
75 75
76# these should be used in tests 76# these should be used in tests