diff --git a/test/README-dev.md b/test/README-dev.md index d8922de000..3b855d8519 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 f25e63662c..b7429778fb 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 7b1c8deecb..38d38bdb5c 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 78705f7805..caa048b278 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