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:20:42 +0200
commit4efd84fdd648279367683b280c9d9feb2ba54e9e (patch)
treea806a83e59d844b8ed3675455ae6c60b594fcaae /test
parentfb32f6ea42e6916ff88cc44cf5de6e63ba596aca (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)
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 a745e729ea..3ab3ea6d4a 100644
--- a/test/recipes/30-test_evp.t
+++ b/test/recipes/30-test_evp.t
@@ -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'),