Don't run the ssl trace test if no-ecx

no-ecx causes SSL_trace to give different output. The test compares
the output to a reference sample - so we disable it in the case of no-ecx.

Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/21372)
This commit is contained in:
Matt Caswell 2023-07-06 10:15:25 +01:00
parent c3832d79db
commit 47ef3b9fc0
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ static int is_fips = 0;
/* The ssltrace test assumes some options are switched on/off */
#if !defined(OPENSSL_NO_SSL_TRACE) && !defined(OPENSSL_NO_EC) \
&& defined(OPENSSL_NO_ZLIB) && defined(OPENSSL_NO_BROTLI) \
&& defined(OPENSSL_NO_ZSTD)
&& defined(OPENSSL_NO_ZSTD) && !defined(OPENSSL_NO_ECX)
# define DO_SSL_TRACE_TEST
#endif