wok-next view openssl10/stuff/patches/ssl3-test-failure.patch @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents
children
line source
1 From: Kurt Roeckx <kurt@roeckx.be>
2 Date: Sun, 6 Sep 2015 16:04:11 +0200
3 Subject: Disable SSLv3 test in test suite
5 When testing SSLv3 the test program returns 0 for skip. The test for weak DH
6 expects a failure, but gets success.
8 It should probably be changed to return something other than 0 for a skipped
9 test.
10 ---
11 test/testssl | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
14 diff --git a/test/testssl b/test/testssl
15 index 747e4ba..1e4370b 100644
16 --- a/test/testssl
17 +++ b/test/testssl
18 @@ -160,7 +160,7 @@ test_cipher() {
19 }
21 echo "Testing ciphersuites"
22 -for protocol in TLSv1.2 SSLv3; do
23 +for protocol in TLSv1.2; do
24 echo "Testing ciphersuites for $protocol"
25 for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "RSA+$protocol" | tr ':' ' '`; do
26 test_cipher $cipher $protocol