Skip test_fipsload when fips is disabled.
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/15027)
diff --git a/test/recipes/90-test_fipsload.t b/test/recipes/90-test_fipsload.t
index 1ebf1b8..9aa39da 100644
--- a/test/recipes/90-test_fipsload.t
+++ b/test/recipes/90-test_fipsload.t
@@ -16,6 +16,7 @@
use lib bldtop_dir('.');
use platform;
+plan skip_all => 'Test is disabled with disabled fips' if disabled('fips');
plan skip_all => 'Test only supported in a shared build' if disabled('shared');
plan skip_all => 'Test is disabled on AIX' if config('target') =~ m|^aix|;
plan skip_all => 'Test is disabled on NonStop ia64' if config('target') =~ m|^nonstop-nse|;