Skip to content

Commit

Permalink
Don't run the ssl trace test if no-ecx
Browse files Browse the repository at this point in the history
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 #21372)
  • Loading branch information
mattcaswell committed Jul 6, 2023
1 parent c3832d7 commit 47ef3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/quicapitest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 47ef3b9

Please sign in to comment.