From 4efd84fdd648279367683b280c9d9feb2ba54e9e Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 11 Aug 2023 09:42:36 +0100 Subject: [PATCH] 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) --- test/recipes/30-test_evp.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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'),