From 624359374b9af4f99ce1bfaf89e28b7306987777 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Mon, 26 Apr 2021 12:59:23 +0200 Subject: [PATCH] Skip test_fipsload when fips is disabled. Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/15027) --- test/recipes/90-test_fipsload.t | 1 + 1 file changed, 1 insertion(+) diff --git a/test/recipes/90-test_fipsload.t b/test/recipes/90-test_fipsload.t index 1ebf1b8a3ca..9aa39da0e4b 100644 --- a/test/recipes/90-test_fipsload.t +++ b/test/recipes/90-test_fipsload.t @@ -16,6 +16,7 @@ use lib srctop_dir('Configurations'); 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|; -- 2.47.2