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/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92f2656288f25bb24e5ae2d4b91d0fc0b57b744f;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 (Merged from https://github.com/openssl/openssl/pull/28525) --- 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; }