From: Pauli Date: Mon, 3 Feb 2025 23:47:24 +0000 (+1100) Subject: test: get provider compatibily tests working X-Git-Tag: openssl-3.6.0-alpha1~461 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b449d01a7d73bd9567dd30be17238ab50249ee1;p=thirdparty%2Fopenssl.git test: get provider compatibily tests working Reviewed-by: Viktor Dukhovni Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/27885) --- diff --git a/test/recipes/30-test_lms.t b/test/recipes/30-test_lms.t index c23214ea340..7ab8a77199b 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.6.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('.');