From 7192e4dfa104f83e54c37e6acfa49fb6a3e1a5dd Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sun, 30 Aug 2020 09:53:22 +0200 Subject: TEST: Ensure that the base provider i activated when needed The fips providers can't be activated alone if encoding, decoding or STORE are going to be used. To enable this, we selectively use test/fips-and-base.cnf instead of test/fips.cnf in our test recipes. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/12587) --- test/recipes/30-test_evp.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/recipes/30-test_evp.t') diff --git a/test/recipes/30-test_evp.t b/test/recipes/30-test_evp.t index a49f4b5..c80fdd9 100644 --- a/test/recipes/30-test_evp.t +++ b/test/recipes/30-test_evp.t @@ -29,7 +29,7 @@ my $defaultcnf = $no_legacy ? 'default.cnf' : 'default-and-legacy.cnf'; my @configs = ( $defaultcnf ); # Only add the FIPS config if the FIPS module has been built -push @configs, 'fips.cnf' unless $no_fips; +push @configs, 'fips-and-base.cnf' unless $no_fips; # A list of tests that run with both the default and fips provider. my @files = qw( -- cgit v1.1