Skip to content

Commit

Permalink
Correct the no-dh and no-dsa fix
Browse files Browse the repository at this point in the history
The condition wasn't quite right

Reviewed-by: Rich Salz <[email protected]>
(Merged from openssl#2702)
  • Loading branch information
levitte committed Feb 22, 2017
1 parent a0179d0 commit e4a3d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/recipes/80-test_ssl_new.t
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ my %conf_dependent_tests = (
"10-resumption.conf" => !$is_default_tls,
"11-dtls_resumption.conf" => !$is_default_dtls,
"19-mac-then-encrypt.conf" => !$is_default_tls,
"20-cert-select.conf" => !$is_default_tls && !$no_dh && !$no_dsa,
"20-cert-select.conf" => !$is_default_tls || $no_dh || $no_dsa,
);

# Add your test here if it should be skipped for some compile-time
Expand Down

0 comments on commit e4a3d0f

Please sign in to comment.