]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Use the fips-and-base.cnf config file in CMP tests
authorMatt Caswell <matt@openssl.org>
Fri, 28 May 2021 13:03:25 +0000 (14:03 +0100)
committerMatt Caswell <matt@openssl.org>
Tue, 8 Jun 2021 17:53:39 +0000 (18:53 +0100)
Two CMP tests were using the fips.cnf config file. However to
ensure that decoders are available the fips-and-base.cnf config
file needs to be used instead.

Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15504)

test/recipes/65-test_cmp_server.t
test/recipes/65-test_cmp_vfy.t

index 478de7751a6a5f5f60577017bd9f4313ec90c50c..ba09fbe924e35c699900ce283ad6585d0c424f1a 100644 (file)
@@ -36,5 +36,5 @@ ok(run(test([@basic_cmd, "none"])));
 ok(run(test([@basic_cmd, "default", srctop_file("test", "default.cnf")])));
 
 unless ($no_fips) {
-    ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips.cnf")])));
+    ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips-and-base.cnf")])));
 }
index cc0ef8cee703e56d9ac95333d37a39a8802ec394..f722800e2765de392ed2a311c16180bf53792363 100644 (file)
@@ -47,5 +47,5 @@ ok(run(test([@basic_cmd, "none"])));
 ok(run(test([@basic_cmd, "default", srctop_file("test", "default.cnf")])));
 
 unless ($no_fips) {
-    ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips.cnf")])));
+    ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips-and-base.cnf")])));
 }