diff -up ./test/recipes/15-test_ec.t.skip-tests ./test/recipes/15-test_ec.t --- ./test/recipes/15-test_ec.t.skip-tests 2023-03-14 13:42:38.865508269 +0100 +++ ./test/recipes/15-test_ec.t 2023-03-14 13:43:36.237021635 +0100 @@ -90,7 +90,7 @@ subtest 'Ed448 conversions -- public key subtest 'Check loading of fips and non-fips keys' => sub { plan skip_all => "FIPS is disabled" - if $no_fips; + if 1; #Red Hat specific, original value is $no_fips; plan tests => 2; diff -up ./test/recipes/65-test_cmp_protect.t.skip-tests ./test/recipes/65-test_cmp_protect.t --- ./test/recipes/65-test_cmp_protect.t.skip-tests 2023-03-14 10:13:11.342056559 +0100 +++ ./test/recipes/65-test_cmp_protect.t 2023-03-14 10:14:42.643873496 +0100 @@ -27,7 +27,7 @@ plan skip_all => "This test is not suppo plan skip_all => "This test is not supported in a shared library build on Windows" if $^O eq 'MSWin32' && !disabled("shared"); -plan tests => 2 + ($no_fips ? 0 : 1); #fips test +plan skip_all => 2 + ($no_fips ? 0 : 1); #fips test my @basic_cmd = ("cmp_protect_test", data_file("server.pem"), diff -up ./test/recipes/65-test_cmp_vfy.t.skip-tests ./test/recipes/65-test_cmp_vfy.t --- ./test/recipes/65-test_cmp_vfy.t.skip-tests 2023-03-14 10:13:38.106296042 +0100 +++ ./test/recipes/65-test_cmp_vfy.t 2023-03-14 10:16:56.496071178 +0100 @@ -27,7 +27,7 @@ plan skip_all => "This test is not suppo plan skip_all => "This test is not supported in a no-ec build" if disabled("ec"); -plan tests => 2 + ($no_fips ? 0 : 1); #fips test +plan skip_all => 2 + ($no_fips ? 0 : 1); #fips test my @basic_cmd = ("cmp_vfy_test", data_file("server.crt"), data_file("client.crt"),