blob: 3fc5d7945116fd64748598ba7d1dc52961d074f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Disable SSLv3 test when built without SSL3 option disabled
- Test for weak DH fails when enabled
--- test/testssl.orig 2017-04-27 12:23:44 UTC
+++ test/testssl
@@ -160,7 +160,7 @@ test_cipher() {
}
set -x
echo "Testing ciphersuites"
-for protocol in TLSv1.2 SSLv3; do
+for protocol in TLSv1.2; do
echo "Testing ciphersuites for $protocol"
for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "RSA+$protocol" | tr ':' ' '`; do
test_cipher $cipher $protocol
|