summaryrefslogtreecommitdiffstats
path: root/test/recipes/80-test_ssl_old.t
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2017-12-27 16:37:22 +0100
committerBernd Edlinger <bernd.edlinger@hotmail.de>2017-12-27 16:37:22 +0100
commit8175af50cc208c09f92b30358d30dd86c798b60e (patch)
treeb19206cbabf69c104b9edc66a2c4287db38cbd49 /test/recipes/80-test_ssl_old.t
parentec/ecp_nistp*.c: sanitize for undefined/implmentation-specific behaviour. (diff)
downloadopenssl-8175af50cc208c09f92b30358d30dd86c798b60e.tar.xz
openssl-8175af50cc208c09f92b30358d30dd86c798b60e.zip
Alternate fix for ../test/recipes/80-test_ssl_old.t with no-ec
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4981)
Diffstat (limited to 'test/recipes/80-test_ssl_old.t')
-rw-r--r--test/recipes/80-test_ssl_old.t14
1 files changed, 2 insertions, 12 deletions
diff --git a/test/recipes/80-test_ssl_old.t b/test/recipes/80-test_ssl_old.t
index 8b2d02fd0a..2f3d3be6cb 100644
--- a/test/recipes/80-test_ssl_old.t
+++ b/test/recipes/80-test_ssl_old.t
@@ -398,21 +398,11 @@ sub testssl {
my @exkeys = ();
my $ciphers = "-EXP:-PSK:-SRP:-kDH:-kECDHe";
- if ($no_dh) {
- note "skipping DHE tests\n";
- $ciphers .= ":-kDHE";
- }
- if ($no_dsa) {
- note "skipping DSA tests\n";
- $ciphers .= ":-aDSA";
- } else {
+ if (!$no_dsa) {
push @exkeys, "-s_cert", "certD.ss", "-s_key", "keyD.ss";
}
- if ($no_ec) {
- note "skipping EC tests\n";
- $ciphers .= ":!aECDSA:!kECDH";
- } else {
+ if (!$no_ec) {
push @exkeys, "-s_cert", "certE.ss", "-s_key", "keyE.ss";
}