summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--regress/test-exec.sh12
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d9a60541..7b5c68448 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,7 @@
11 very basic regress test against Twisted Conch in "make interop" 11 very basic regress test against Twisted Conch in "make interop"
12 target (conch is available in ports/devel/py-twisted/conch); 12 target (conch is available in ports/devel/py-twisted/conch);
13 ok markus@ 13 ok markus@
14 - (djm) [regress/Makefile] search for conch by path, like we do putty
14 15
1520080629 1620080629
16 - (djm) OpenBSD CVS Sync 17 - (djm) OpenBSD CVS Sync
@@ -4479,4 +4480,4 @@
4479 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4480 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4480 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4481 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4481 4482
4482$Id: ChangeLog,v 1.5037 2008/06/29 22:07:56 djm Exp $ 4483$Id: ChangeLog,v 1.5038 2008/06/29 22:12:37 djm Exp $
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 652bd49d3..b54448912 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -70,9 +70,9 @@ SFTPSERVER=/usr/libexec/openssh/sftp-server
70SCP=scp 70SCP=scp
71 71
72# Interop testing 72# Interop testing
73PLINK=/usr/local/bin/plink 73PLINK=plink
74PUTTYGEN=/usr/local/bin/puttygen 74PUTTYGEN=puttygen
75CONCH=/usr/local/bin/conch 75CONCH=conch
76 76
77if [ "x$TEST_SSH_SSH" != "x" ]; then 77if [ "x$TEST_SSH_SSH" != "x" ]; then
78 SSH="${TEST_SSH_SSH}" 78 SSH="${TEST_SSH_SSH}"
@@ -116,7 +116,11 @@ if [ "x$TEST_SSH_PUTTYGEN" != "x" ]; then
116 esac 116 esac
117fi 117fi
118if [ "x$TEST_SSH_CONCH" != "x" ]; then 118if [ "x$TEST_SSH_CONCH" != "x" ]; then
119 CONCH="${TEST_SSH_CONCH}" 119 # Find real binary, if it exists
120 case "${TEST_SSH_CONCH}" in
121 /*) CONCH="${TEST_SSH_CONCH}" ;;
122 *) CONCH=`which ${TEST_SSH_CONCH} 2>/dev/null` ;;
123 esac
120fi 124fi
121 125
122# Path to sshd must be absolute for rexec 126# Path to sshd must be absolute for rexec