From: Richard Levitte Date: Wed, 22 Feb 2017 00:49:50 +0000 (+0100) Subject: Correct the no-dh and no-dsa fix X-Git-Tag: OpenSSL_1_1_1-pre1~2317 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4a3d0f96800e578ddb76dcc387125df65641500;p=openssl Correct the no-dh and no-dsa fix The condition wasn't quite right Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2702) --- diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index f65b5d0559..8006e5fe07 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -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