summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <tim>2011-01-10 20:56:26 +0000
committertim <tim>2011-01-10 20:56:26 +0000
commit623d162188c85a42092d79ffdfe98a7908acc42d (patch)
tree9e717318780eb8bd26e9c1c8f45eef7f5616fe93
parent928e04dfc2c2d74c1c27d8e9752b3801eac6d008 (diff)
downloadopenssh-623d162188c85a42092d79ffdfe98a7908acc42d.tar.gz
- (tim) [regress/host-expand.sh] Fix for building outside of read only
source tree.
-rw-r--r--ChangeLog4
-rw-r--r--regress/host-expand.sh6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6dde0e85..3e931f39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20110111
+ - (tim) [regress/host-expand.sh] Fix for building outside of read only
+ source tree.
+
20110109
- (djm) [Makefile.in] list ssh_host_ecdsa key in PATHSUBS; spotted by
openssh AT roumenpetrov.info
diff --git a/regress/host-expand.sh b/regress/host-expand.sh
index c0417d9c..a0188363 100644
--- a/regress/host-expand.sh
+++ b/regress/host-expand.sh
@@ -5,14 +5,14 @@ tid="expand %h and %n"
echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
printf 'LocalCommand printf "%%%%s\\n" "%%n" "%%h"\n' >> $OBJ/ssh_proxy
-cat >expect <<EOE
+cat >$OBJ/expect <<EOE
somehost
127.0.0.1
EOE
for p in 1 2; do
verbose "test $tid: proto $p"
- ${SSH} -F $OBJ/ssh_proxy -$p somehost true >actual
- diff expect actual || fail "$tid proto $p"
+ ${SSH} -F $OBJ/ssh_proxy -$p somehost true >$OBJ/actual
+ diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
done