From: Tomas Mraz Date: Mon, 26 Apr 2021 10:59:23 +0000 (+0200) Subject: Skip test_fipsload when fips is disabled. X-Git-Tag: openssl-3.0.0-alpha16~111 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=624359374b9af4f99ce1bfaf89e28b7306987777;p=thirdparty%2Fopenssl.git Skip test_fipsload when fips is disabled. Reviewed-by: Matthias St. Pierre (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 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|;