test: get provider compatibily tests working

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/26623)
This commit is contained in:
Pauli 2025-02-04 10:47:24 +11:00
parent b201fc96c8
commit a167e8efc2

View file

@ -19,6 +19,11 @@ BEGIN {
my $provconf = srctop_file("test", "fips-and-base.cnf");
my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
run(test(["fips_version_test", "-config", $provconf, ">=3.5.0"]),
capture => 1, statusvar => \my $exit);
plan skip_all => "FIPS provider does not support LMS" if !$exit;
use lib srctop_dir('Configurations');
use lib bldtop_dir('.');