summaryrefslogtreecommitdiff
path: root/regress/conch-ciphers.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-07-04 17:11:30 +1000
committerDarren Tucker <dtucker@zip.com.au>2008-07-04 17:11:30 +1000
commitb01bac109bd2fc6b3093fe4aeb31a125be8f2a4e (patch)
tree09f610f6fd6897cd97c8187ab2e9134bb3b75f02 /regress/conch-ciphers.sh
parent5d6d70a8429824b3d0fb3a0faf70333c062c8925 (diff)
- djm@cvs.openbsd.org 2008/06/30 10:43:03
[regress/conch-ciphers.sh] explicitly disable conch options that could interfere with the test
Diffstat (limited to 'regress/conch-ciphers.sh')
-rw-r--r--regress/conch-ciphers.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/regress/conch-ciphers.sh b/regress/conch-ciphers.sh
index c371d3030..84b190618 100644
--- a/regress/conch-ciphers.sh
+++ b/regress/conch-ciphers.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: conch-ciphers.sh,v 1.1 2008/06/28 13:57:25 djm Exp $ 1# $OpenBSD: conch-ciphers.sh,v 1.2 2008/06/30 10:43:03 djm Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="conch ciphers" 4tid="conch ciphers"
@@ -6,8 +6,6 @@ tid="conch ciphers"
6DATA=/bin/ls 6DATA=/bin/ls
7COPY=${OBJ}/copy 7COPY=${OBJ}/copy
8 8
9set -e
10
11if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then 9if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then
12 fatal "conch interop tests not enabled" 10 fatal "conch interop tests not enabled"
13fi 11fi
@@ -18,9 +16,11 @@ for c in aes256-ctr aes256-cbc aes192-ctr aes192-cbc aes128-ctr aes128-cbc \
18 cast128-cbc blowfish 3des-cbc ; do 16 cast128-cbc blowfish 3des-cbc ; do
19 verbose "$tid: cipher $c" 17 verbose "$tid: cipher $c"
20 rm -f ${COPY} 18 rm -f ${COPY}
21 ${CONCH} --identity $OBJ/rsa --port $PORT --user $USER \ 19 # XXX the 2nd "cat" seems to be needed because of buggy FD handling
22 --known-hosts $OBJ/known_hosts \ 20 # in conch
23 127.0.0.1 cat ${DATA} > ${COPY} 2>/dev/null 21 ${CONCH} --identity $OBJ/rsa --port $PORT --user $USER -e none \
22 --known-hosts $OBJ/known_hosts --notty --noagent --nox11 -n \
23 127.0.0.1 "cat ${DATA}" 2>/dev/null | cat > ${COPY}
24 if [ $? -ne 0 ]; then 24 if [ $? -ne 0 ]; then
25 fail "ssh cat $DATA failed" 25 fail "ssh cat $DATA failed"
26 fi 26 fi