diff options
author | Pauli <pauli@openssl.org> | 2023-04-18 09:20:40 +0200 |
---|---|---|
committer | Hugo Landau <hlandau@openssl.org> | 2023-04-21 18:01:38 +0200 |
commit | bc5d9502c5f3c726e42ef72263a4076fd48300d6 (patch) | |
tree | 27ba078ffe984afbd0ea670a90306a4c9e92ca8e /test | |
parent | Bump actions/setup-python from 4.5.0 to 4.6.0 (diff) | |
download | openssl-bc5d9502c5f3c726e42ef72263a4076fd48300d6.tar.xz openssl-bc5d9502c5f3c726e42ef72263a4076fd48300d6.zip |
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.t | 2 |
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"); |