summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in6
-rw-r--r--regress/test-exec.sh12
3 files changed, 18 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a23cac87..08a593272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120080313 120080313
2 - (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to 2 - (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to
3 self: make changes to Makefile.in next time, not the generated Makefile). 3 self: make changes to Makefile.in next time, not the generated Makefile).
4 - (djm) [Makefile.in regress/test-exec.sh] Find installed plink(1) and
5 puttygen(1) by $PATH
4 6
520080312 720080312
6 - (djm) OpenBSD CVS Sync 8 - (djm) OpenBSD CVS Sync
@@ -3744,4 +3746,4 @@
3744 OpenServer 6 and add osr5bigcrypt support so when someone migrates 3746 OpenServer 6 and add osr5bigcrypt support so when someone migrates
3745 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 3747 passwords between UnixWare and OpenServer they will still work. OK dtucker@
3746 3748
3747$Id: ChangeLog,v 1.4871 2008/03/13 01:05:40 djm Exp $ 3749$Id: ChangeLog,v 1.4872 2008/03/13 01:41:31 djm Exp $
diff --git a/Makefile.in b/Makefile.in
index 3dc71feee..6b488feca 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.288 2008/03/13 01:05:40 djm Exp $ 1# $Id: Makefile.in,v 1.289 2008/03/13 01:41:31 djm Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -392,6 +392,8 @@ tests interop-tests: $(TARGETS)
392 TEST_SSH_SSHKEYSCAN="$${BUILDDIR}/ssh-keyscan"; \ 392 TEST_SSH_SSHKEYSCAN="$${BUILDDIR}/ssh-keyscan"; \
393 TEST_SSH_SFTP="$${BUILDDIR}/sftp"; \ 393 TEST_SSH_SFTP="$${BUILDDIR}/sftp"; \
394 TEST_SSH_SFTPSERVER="$${BUILDDIR}/sftp-server"; \ 394 TEST_SSH_SFTPSERVER="$${BUILDDIR}/sftp-server"; \
395 TEST_SSH_PLINK="plink"; \
396 TEST_SSH_PUTTYGEN="puttygen"; \
395 cd $(srcdir)/regress || exit $$?; \ 397 cd $(srcdir)/regress || exit $$?; \
396 $(MAKE) \ 398 $(MAKE) \
397 .OBJDIR="$${BUILDDIR}/regress" \ 399 .OBJDIR="$${BUILDDIR}/regress" \
@@ -408,6 +410,8 @@ tests interop-tests: $(TARGETS)
408 TEST_SSH_SSHKEYSCAN="$${TEST_SSH_SSHKEYSCAN}" \ 410 TEST_SSH_SSHKEYSCAN="$${TEST_SSH_SSHKEYSCAN}" \
409 TEST_SSH_SFTP="$${TEST_SSH_SFTP}" \ 411 TEST_SSH_SFTP="$${TEST_SSH_SFTP}" \
410 TEST_SSH_SFTPSERVER="$${TEST_SSH_SFTPSERVER}" \ 412 TEST_SSH_SFTPSERVER="$${TEST_SSH_SFTPSERVER}" \
413 TEST_SSH_PLINK="$${TEST_SSH_PLINK}" \
414 TEST_SSH_PUTTYGEN="$${TEST_SSH_PUTTYGEN}" \
411 EXEEXT="$(EXEEXT)" \ 415 EXEEXT="$(EXEEXT)" \
412 $@ 416 $@
413 417
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 1eb9ff729..cf7665973 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -101,10 +101,18 @@ if [ "x$TEST_SSH_SCP" != "x" ]; then
101 SCP="${TEST_SSH_SCP}" 101 SCP="${TEST_SSH_SCP}"
102fi 102fi
103if [ "x$TEST_SSH_PLINK" != "x" ]; then 103if [ "x$TEST_SSH_PLINK" != "x" ]; then
104 PLINK="${TEST_SSH_PLINK}" 104 # Find real binary, if it exists
105 case "${TEST_SSH_PLINK}" in
106 /*) PLINK="${TEST_SSH_PLINK}" ;;
107 *) PLINK=`which ${TEST_SSH_PLINK}` ;;
108 esac
105fi 109fi
106if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then 110if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then
107 PUTTYGEN="${TEST_SSH_PUTTYGEN}" 111 # Find real binary, if it exists
112 case "${TEST_SSH_PUTTYGEN}" in
113 /*) PUTTYGEN="${TEST_SSH_PUTTYGEN}" ;;
114 *) PUTTYGEN=`which ${TEST_SSH_PUTTYGEN}` ;;
115 esac
108fi 116fi
109 117
110# Path to sshd must be absolute for rexec 118# Path to sshd must be absolute for rexec