TEST: Remove the build of fipsmodule.cnf from test recipes
[openssl.git] / test / recipes / 65-test_cmp_client.t
index a25be81996ed32a1eada647c9a98c6d6721cf118..0cd4982e89b883d30fa0289a11337b43d3734701 100644 (file)
@@ -18,14 +18,13 @@ BEGIN {
 
 use lib srctop_dir('Configurations');
 use lib bldtop_dir('.');
-use platform;
 
 my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
 
 plan skip_all => "This test is not supported in a no-cmp or no-ec build"
     if disabled("cmp") || disabled("ec");
 
-plan tests => 2 + ($no_fips ? 0 : 2); #fips install + fips test
+plan tests => 2 + ($no_fips ? 0 : 1); # fips test
 
 my @basic_cmd = ("cmp_client_test",
                  data_file("server.key"),
@@ -39,10 +38,5 @@ ok(run(test([@basic_cmd, "none"])));
 ok(run(test([@basic_cmd, "default", srctop_file("test", "default.cnf")])));
 
 unless ($no_fips) {
-    ok(run(app(['openssl', 'fipsinstall',
-                '-out', bldtop_file('providers', 'fipsmodule.cnf'),
-                '-module', bldtop_file('providers', platform->dso('fips'))])),
-       "fipsinstall");
-
     ok(run(test([@basic_cmd, "fips", srctop_file("test", "fips-and-base.cnf")])));
 }