From: Pauli Date: Mon, 3 Feb 2025 23:47:24 +0000 (+1100) Subject: test: get provider compatibily tests working X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Ffeature%2Fhss;p=thirdparty%2Fopenssl.git test: get provider compatibily tests working Reviewed-by: Tomas Mraz Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/26623) --- diff --git a/test/recipes/30-test_lms.t b/test/recipes/30-test_lms.t index 1f7b6803331..77abd0547a4 100644 --- a/test/recipes/30-test_lms.t +++ b/test/recipes/30-test_lms.t @@ -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('.');