From: Neil Horman Date: Thu, 25 Sep 2025 15:37:52 +0000 (-0400) Subject: Additonal removals of engine references in tests/* X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Ffeature%2Fengineremoval;p=thirdparty%2Fopenssl.git Additonal removals of engine references in tests/* Spotted by @andrewkdinh, some extra notes about/useages of engines that are now vestigial. Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28525) --- diff --git a/test/README-dev.md b/test/README-dev.md index d8922de0008..3b855d8519a 100644 --- a/test/README-dev.md +++ b/test/README-dev.md @@ -29,7 +29,7 @@ The number `{nn}` is (somewhat loosely) grouped as follows: 15-19 individual asymmetric cipher algorithms 20-24 openssl commands (some otherwise not tested) 25-29 certificate forms, generation and verification - 30-35 engine and evp + 30-35 evp 60-79 APIs: 60 X509 subsystem 61 BIO subsystem diff --git a/test/helpers/ssltestlib.c b/test/helpers/ssltestlib.c index f25e63662cc..b7429778fbb 100644 --- a/test/helpers/ssltestlib.c +++ b/test/helpers/ssltestlib.c @@ -9,7 +9,6 @@ #include -#include #include "internal/e_os.h" #include "internal/nelem.h" #include "ssltestlib.h" diff --git a/test/run_tests.pl b/test/run_tests.pl index 7b1c8deecbe..38d38bdb5cb 100644 --- a/test/run_tests.pl +++ b/test/run_tests.pl @@ -70,7 +70,6 @@ if (!defined($jobs)) { $ENV{OPENSSL_CONF} = rel2abs(catfile($srctop, "apps", "openssl.cnf")); $ENV{OPENSSL_CONF_INCLUDE} = rel2abs(catdir($bldtop, "test")); $ENV{OPENSSL_MODULES} = rel2abs(catdir($bldtop, "providers")); -$ENV{OPENSSL_ENGINES} = rel2abs(catdir($bldtop, "engines")); $ENV{CTLOG_FILE} = rel2abs(catfile($srctop, "test", "ct", "log_list.cnf")); # On platforms that support this, this will ensure malloc returns data that is diff --git a/test/sslbuffertest.c b/test/sslbuffertest.c index 78705f78051..caa048b278e 100644 --- a/test/sslbuffertest.c +++ b/test/sslbuffertest.c @@ -8,14 +8,6 @@ * or in the file LICENSE in the source distribution. */ -/* - * We need access to the deprecated low level Engine APIs for legacy purposes - * when the deprecated calls are not hidden - */ -#ifndef OPENSSL_NO_DEPRECATED_3_0 -# define OPENSSL_SUPPRESS_DEPRECATED -#endif - #include #include #include