From 2024a47f7cebede703794702bf89638696dbac20 Mon Sep 17 00:00:00 2001 From: Ben Taylor Date: Tue, 3 Feb 2026 10:06:15 +0000 Subject: [PATCH] Unset DEBUG_C in some tests Signed-off-by: Ben Taylor --- tests/scripts/components-configuration-tls.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/scripts/components-configuration-tls.sh b/tests/scripts/components-configuration-tls.sh index 23c9d68b9f..e1611684f3 100644 --- a/tests/scripts/components-configuration-tls.sh +++ b/tests/scripts/components-configuration-tls.sh @@ -538,6 +538,7 @@ component_full_without_ecdhe_ecdsa_and_tls13 () { component_build_no_ssl_srv () { msg "build: full config except SSL server, make, gcc" # ~ 30s scripts/config.py full + scripts/config.py unset DEBUG_C scripts/config.py unset MBEDTLS_SSL_SRV_C make CC=gcc CFLAGS='-Werror -Wall -Wextra -O1 -Wmissing-prototypes' } @@ -545,6 +546,7 @@ component_build_no_ssl_srv () { component_build_no_ssl_cli () { msg "build: full config except SSL client, make, gcc" # ~ 30s scripts/config.py full + scripts/config.py unset DEBUG_C scripts/config.py unset MBEDTLS_SSL_CLI_C make CC=gcc CFLAGS='-Werror -Wall -Wextra -O1 -Wmissing-prototypes' }