]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
test: get provider compatibily tests working feature/hss
authorPauli <ppzgs1@gmail.com>
Mon, 3 Feb 2025 23:47:24 +0000 (10:47 +1100)
committerPauli <ppzgs1@gmail.com>
Mon, 3 Feb 2025 23:47:24 +0000 (10:47 +1100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/26623)

test/recipes/30-test_lms.t

index 1f7b68033311026612b45822f4bfaf7b1d3fdfbf..77abd0547a40f4c469dcd36c4af20bae4943af70 100644 (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('.');