mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-10-29 22:43:48 +00:00
27 lines
808 B
Diff
27 lines
808 B
Diff
|
From: Kurt Roeckx <kurt@roeckx.be>
|
||
|
Date: Sun, 6 Sep 2015 16:04:11 +0200
|
||
|
Subject: Disable SSLv3 test in test suite
|
||
|
|
||
|
When testing SSLv3 the test program returns 0 for skip. The test for weak DH
|
||
|
expects a failure, but gets success.
|
||
|
|
||
|
It should probably be changed to return something other than 0 for a skipped
|
||
|
test.
|
||
|
---
|
||
|
test/testssl | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/test/testssl b/test/testssl
|
||
|
index 747e4ba..1e4370b 100644
|
||
|
--- a/test/testssl
|
||
|
+++ b/test/testssl
|
||
|
@@ -160,7 +160,7 @@ test_cipher() {
|
||
|
}
|
||
|
|
||
|
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
|