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:21:53 +0000 (15:21 +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)

(cherry picked from commit 4efd84fdd648279367683b280c9d9feb2ba54e9e)

test/recipes/30-test_evp.t

index 9d7040ced2de1c294e6ac279bfe3b020ec32dac9..8ae22ab16cd2c8323a38c6dc7c6fe77ac569bc31 100644 (file)
@@ -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'),