]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix no-dsa in combination with no-err
authorMatt Caswell <matt@openssl.org>
Fri, 11 Aug 2023 08:42:36 +0000 (09:42 +0100)
committerTomas Mraz <tomas@openssl.org>
Tue, 15 Aug 2023 13:20:42 +0000 (15:20 +0200)
Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21722)

test/recipes/30-test_evp.t

index a745e729eacc4709e78724fa54f04281e0e7a291..3ab3ea6d4ad2440bf4c26130060271d92fb0124c 100644 (file)
@@ -187,7 +187,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'),