summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-01-16 14:30:59 -0500
committerRich Salz <rsalz@openssl.org>2017-01-18 12:24:28 -0500
commit4f326dd8998d5b33f72b11432f110e0f2cfcb92b (patch)
tree353a21583d923d230da274dca871e91cdcbded21 /test
parent3e37351834c203421b7f492dd83d5e5872e17778 (diff)
Skip ECDH tests for SSLv3
Reviewed-by: Viktor Dukhovni <viktor@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1597)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/80-test_ssl_old.t9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t
index d413de33b2..ec09bb848e 100644
--- a/test/recipes/80-test_ssl_old.t
+++ b/test/recipes/80-test_ssl_old.t
@@ -475,8 +475,13 @@ sub testssl {
$flag = "-tls1_2";
}
foreach my $cipher (@{$ciphersuites{$protocol}}) {
- ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])),
- "Testing $cipher");
+ if ($protocol eq "SSLv3" && $cipher =~ /ECDH/ ) {
+ note "*****SKIPPING $protocol $cipher";
+ ok(1);
+ } else {
+ ok(run(test([@ssltest, @exkeys, "-cipher", $cipher, $flag])),
+ "Testing $cipher");
+ }
}
is(run(test([@ssltest,
"-s_cipher", "EDH",