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)
This commit is contained in:
Tomas Mraz 2021-04-26 12:59:23 +02:00
parent 50c096ebb0
commit 624359374b

View File

@ -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|;