From: Pauli Date: Wed, 25 Sep 2024 00:30:58 +0000 (+1000) Subject: test: fix unit tests for fips CRNG tests X-Git-Tag: openssl-3.5.0-alpha1~1075 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0081964805421e81cfa804474b1005985d5c6278;p=thirdparty%2Fopenssl.git test: fix unit tests for fips CRNG tests To match changes in #25526 Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/25536) --- diff --git a/test/rand_test.c b/test/rand_test.c index c1d62e1d8f0..d3dca252d5c 100644 --- a/test/rand_test.c +++ b/test/rand_test.c @@ -177,7 +177,7 @@ int setup_tests(void) ADD_TEST(test_rand_uniform); if (OSSL_PROVIDER_available(NULL, "fips") - && fips_provider_version_ge(NULL, 3, 5, 0)) + && fips_provider_version_ge(NULL, 3, 4, 0)) ADD_TEST(fips_health_tests); return 1;