From: Pauli Date: Thu, 6 Feb 2020 23:00:15 +0000 (+1000) Subject: test_dsa: fix deprecation logic X-Git-Tag: openssl-3.0.0-alpha1~490 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fopenssl.git;a=commitdiff_plain;h=57ea7a7a9793a214473302719869c2d41510fc61 test_dsa: fix deprecation logic Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10977) --- diff --git a/test/recipes/15-test_dsa.t b/test/recipes/15-test_dsa.t index 90193fc1b7..aa8c75a93a 100644 --- a/test/recipes/15-test_dsa.t +++ b/test/recipes/15-test_dsa.t @@ -20,8 +20,7 @@ plan skip_all => 'DSA is not supported in this build' if disabled('dsa'); plan tests => 7; my $deprecated_dsa = - disabled('deprecated') - && (!defined config('api') || config('api') >= 30000); + disabled('deprecated') || !defined config('api') || config('api') >= 30000; require_ok(srctop_file('test','recipes','tconversion.pl'));