Commit df0d9c69 authored by Rich Salz's avatar Rich Salz
Browse files

Skip ECDH tests for SSLv3



Reviewed-by: default avatarViktor Dukhovni <viktor@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1597)
(cherry picked from commit 4f326dd8)
parent 8accb70e
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -468,10 +468,15 @@ sub testssl {
	foreach my $protocol (@protocols) {
	    note "Testing ciphersuites for $protocol";
	    foreach my $cipher (@{$ciphersuites{$protocol}}) {
                if ($protocol eq "SSLv3" && $cipher =~ /ECDH/ ) {
                    note "*****SKIPPING $protocol $cipher";
                    ok(1);
                } else {
                    ok(run(test([@ssltest, @exkeys, "-cipher", $cipher,
                                 $protocol eq "SSLv3" ? ("-ssl3") : ()])),
                       "Testing $cipher");
               }
	    }
            is(run(test([@ssltest,
                         "-s_cipher", "EDH",
                         "-c_cipher", 'EDH:@SECLEVEL=1',