From: Neil Horman Date: Thu, 11 Sep 2025 20:00:17 +0000 (-0400) Subject: Don't enable engines on sysdefault tests X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a1d4a53e4f12c3bdffed5ca32889804d004d714;p=thirdparty%2Fopenssl.git Don't enable engines on sysdefault tests With engine removal, we expect that init flag to disappear, so stop using it here. Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz Reviewed-by: Saša Nedvědický Reviewed-by: Eugene Syromiatnikov Reviewed-by: Matt Caswell Reviewed-by: Norbert Pocs (Merged from https://github.com/openssl/openssl/pull/29305) --- diff --git a/test/sysdefaulttest.c b/test/sysdefaulttest.c index cc756fd1394..90166bdf988 100644 --- a/test/sysdefaulttest.c +++ b/test/sysdefaulttest.c @@ -44,8 +44,7 @@ static int test_func(void) int global_init(void) { - if (!OPENSSL_init_ssl(OPENSSL_INIT_ENGINE_ALL_BUILTIN - | OPENSSL_INIT_LOAD_CONFIG, NULL)) + if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_CONFIG, NULL)) return 0; return 1; }