summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2023-08-11 09:42:36 +0100
committerTomas Mraz <tomas@openssl.org>2023-08-15 15:22:07 +0200
commitdd8243b3905b671b1702faf9b50bfa0b9203066a (patch)
treef1a9db14bea4bcb42b01aa749d95fabacdb1b380 /test
parent65f59604bc036d9482046d8f53b31ad9b8fb7027 (diff)
Fix no-dsa in combination with no-err
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)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/30-test_evp.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t
index 0a036b7da0..d4d26667c8 100644
--- a/test/recipes/30-test_evp.t
+++ b/test/recipes/30-test_evp.t
@@ -173,7 +173,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'),