From: Matt Caswell Date: Wed, 22 Jun 2016 22:22:00 +0000 (+0100) Subject: Fix client auth test_ssl_new failures when enabling/disabling protocols X-Git-Tag: OpenSSL_1_1_0-pre6~203 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1b5c44b810f8d807ba9a98d766bfef8f53b08960;p=oweals%2Fopenssl.git Fix client auth test_ssl_new failures when enabling/disabling protocols If configuring for anything other than the default TLS protocols then test failures were occuring. Reviewed-by: Emilia Käsper --- diff --git a/test/recipes/80-test_ssl_new.t b/test/recipes/80-test_ssl_new.t index a024753614..258164fcfa 100644 --- a/test/recipes/80-test_ssl_new.t +++ b/test/recipes/80-test_ssl_new.t @@ -39,6 +39,7 @@ my $no_dtls = alldisabled(available_protocols("dtls")); my %conf_dependent_tests = ( "02-protocol-version.conf" => !$is_default_tls, + "04-client_auth.conf" => !$is_default_tls, "05-dtls-protocol-version.conf" => !$is_default_dtls, );