From: Pauli Date: Tue, 18 Apr 2023 07:20:40 +0000 (+1000) Subject: sslapi: use correct fipsmodule.cnf X-Git-Tag: openssl-3.2.0-alpha1~985 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc5d9502c5f3c726e42ef72263a4076fd48300d6;p=thirdparty%2Fopenssl.git 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 Reviewed-by: Shane Lontis Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/20762) --- diff --git a/test/recipes/90-test_sslapi.t b/test/recipes/90-test_sslapi.t index 70d789d6c40..9e9e32b51e5 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");