summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-02-29 21:30:05 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-02-29 21:30:05 +1100
commitb099d855d3288f60d397144314f7cb3cd57cf790 (patch)
treec416bfa239096bd0d12fbbeec0d206f2e6618bc5 /regress
parent9468ba33a1d1a5fd6258658dee1058500e1082f0 (diff)
- (dtucker) [regress/try-ciphers.sh] Skip acss if not compiled in (eg if we
built with openssl < 0.9.7)
Diffstat (limited to 'regress')
-rw-r--r--regress/try-ciphers.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh
index 103f410a8..15827e250 100644
--- a/regress/try-ciphers.sh
+++ b/regress/try-ciphers.sh
@@ -29,6 +29,9 @@ for c in $ciphers; do
29 fi 29 fi
30done 30done
31 31
32if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
33then
34
32echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy 35echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
33c=acss@openssh.org 36c=acss@openssh.org
34for m in $macs; do 37for m in $macs; do
@@ -39,3 +42,5 @@ for m in $macs; do
39 fail "ssh -2 failed with mac $m cipher $c" 42 fail "ssh -2 failed with mac $m cipher $c"
40 fi 43 fi
41done 44done
45
46fi