summaryrefslogtreecommitdiffstats
path: root/test/recipes
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2024-05-13 10:45:24 +0100
committerTomas Mraz <tomas@openssl.org>2024-05-15 12:14:24 +0200
commit50153ad2bb767a6e79e5c0c569f136f723a32700 (patch)
tree157fac8b69c44a4e1809aea3cc637383b8b55f20 /test/recipes
parentad3f28c5fbd5dcbc763a650313fd666b0e339cca (diff)
Suppress a spurious error from the sysdefault test
Running the sysdefault test results in spurious error output - even though the test has actually passed Fixes #24383 Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24384)
Diffstat (limited to 'test/recipes')
-rw-r--r--test/recipes/90-test_sysdefault.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/90-test_sysdefault.t b/test/recipes/90-test_sysdefault.t
index 6984bc1067..8ed323c74e 100644
--- a/test/recipes/90-test_sysdefault.t
+++ b/test/recipes/90-test_sysdefault.t
@@ -24,7 +24,7 @@ ok(run(test(["sysdefaulttest"])), "sysdefaulttest");
$ENV{OPENSSL_CONF} = data_file("sysdefault-bad.cnf");
-ok(!run(test(["sysdefaulttest"])), "sysdefaulttest");
+ok(run(test(["sysdefaulttest", "-f"])), "sysdefaulttest");
$ENV{OPENSSL_CONF} = data_file("sysdefault-ignore.cnf");