From dd96c0a2df84942c69ec2240ec8efe6a7129f16f Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Tue, 2 Apr 2024 12:34:24 +0200 Subject: [PATCH] all.sh: Use full instead of default as the base for the new component Signed-off-by: Ronald Cron --- tests/scripts/all.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index d811dd7888..8f0b54768e 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -6050,14 +6050,16 @@ component_test_tls13_no_compatibility_mode () { tests/ssl-opt.sh } -component_test_default_minus_session_tickets() { - msg "build: default config without session tickets" +component_test_full_minus_session_tickets() { + msg "build: full config without session tickets" + scripts/config.py full scripts/config.py unset MBEDTLS_SSL_SESSION_TICKETS + scripts/config.py unset MBEDTLS_SSL_EARLY_DATA CC=gcc cmake -D CMAKE_BUILD_TYPE:String=Asan . make - msg "test: default config without session tickets" + msg "test: full config without session tickets" make test - msg "ssl-opt.sh (default config without session tickets)" + msg "ssl-opt.sh (full config without session tickets)" tests/ssl-opt.sh }