summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2023-04-18 17:20:40 +1000
committerHugo Landau <hlandau@openssl.org>2023-04-21 17:01:38 +0100
commitbc5d9502c5f3c726e42ef72263a4076fd48300d6 (patch)
tree27ba078ffe984afbd0ea670a90306a4c9e92ca8e /test
parent3ac96c8f715672ff77025d48b5773f5de4f84215 (diff)
downloadopenssl-new-bc5d9502c5f3c726e42ef72263a4076fd48300d6.tar.gz
sslapi: use correct fipsmodule.cnf
The SSL API tests copies fipsmodule.cnf and modifies it. Unfortunately, it grabbed the wrong instance of this file. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20762)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/90-test_sslapi.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/90-test_sslapi.t b/test/recipes/90-test_sslapi.t
index 70d789d6c4..9e9e32b51e 100644
--- a/test/recipes/90-test_sslapi.t
+++ b/test/recipes/90-test_sslapi.t
@@ -19,7 +19,7 @@ use lib bldtop_dir('.');
my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
my $fipsmodcfg_filename = "fipsmodule.cnf";
-my $fipsmodcfg = bldtop_file("providers", $fipsmodcfg_filename);
+my $fipsmodcfg = bldtop_file("test", $fipsmodcfg_filename);
my $provconf = srctop_file("test", "fips-and-base.cnf");