]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Don't run the ssl trace test if no-ecx
authorMatt Caswell <matt@openssl.org>
Thu, 6 Jul 2023 09:15:25 +0000 (10:15 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 6 Jul 2023 10:17:11 +0000 (11:17 +0100)
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)

test/quicapitest.c

index 4ed10a33fc5d43eac05a6ea916468d62698d84d6..d7eb9192bd072ed78c9d6efce96d648b9e799eca 100644 (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