From: Matt Caswell Date: Fri, 11 Aug 2023 08:42:36 +0000 (+0100) Subject: Fix no-dsa in combination with no-err X-Git-Tag: openssl-3.1.3~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a39ad3afe887a26205cee8bf1083fa803b3cec36;p=thirdparty%2Fopenssl.git Fix no-dsa in combination with no-err Reviewed-by: Hugo Landau Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/21722) (cherry picked from commit 4efd84fdd648279367683b280c9d9feb2ba54e9e) --- diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t index 9d7040ced2d..8ae22ab16cd 100644 --- a/test/recipes/30-test_evp.t +++ b/test/recipes/30-test_evp.t @@ -175,7 +175,8 @@ sub test_errors { # actually tests diagnostics of OSSL_STORE } SKIP: { - skip "DSA not disabled", 2 if !disabled("dsa"); + skip "DSA not disabled or ERR disabled", 2 + if !disabled("dsa") || disabled("err"); ok(test_errors(key => 'server-dsa-key.pem', out => 'server-dsa-key.err'),