ssl3-test-failure.patch 808 B

123456789101112131415161718192021222324252627
  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
  4. When testing SSLv3 the test program returns 0 for skip. The test for weak DH
  5. expects a failure, but gets success.
  6. It should probably be changed to return something other than 0 for a skipped
  7. test.
  8. ---
  9. test/testssl | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/test/testssl b/test/testssl
  12. index 747e4ba..1e4370b 100644
  13. --- a/test/testssl
  14. +++ b/test/testssl
  15. @@ -160,7 +160,7 @@ test_cipher() {
  16. }
  17. echo "Testing ciphersuites"
  18. -for protocol in TLSv1.2 SSLv3; do
  19. +for protocol in TLSv1.2; do
  20. echo "Testing ciphersuites for $protocol"
  21. for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "RSA+$protocol" | tr ':' ' '`; do
  22. test_cipher $cipher $protocol