From 68192fcd3a162948178b83cbecdf19efb1430e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 4 Mar 2020 10:34:47 +0100 Subject: [PATCH] Fix remaining occurrences of config.pl in all.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .pl version is now a compat wrapper around the .py script. Better call the .py script directly. Signed-off-by: Manuel Pégourié-Gonnard --- tests/scripts/all.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 2ade64dac..2d49d5640 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -1185,8 +1185,8 @@ component_test_platform_calloc_macro () { component_test_malloc_0_null () { msg "build: malloc(0) returns NULL (ASan+UBSan build)" - scripts/config.pl full - scripts/config.pl unset MBEDTLS_MEMORY_BUFFER_ALLOC_C + scripts/config.py full + scripts/config.py unset MBEDTLS_MEMORY_BUFFER_ALLOC_C make CC=gcc CFLAGS="'-DMBEDTLS_CONFIG_FILE=\"$PWD/tests/configs/config-wrapper-malloc-0-null.h\"' -O -Werror -Wall -Wextra -fsanitize=address,undefined" LDFLAGS='-fsanitize=address,undefined' msg "test: malloc(0) returns NULL (ASan+UBSan build)" @@ -1235,12 +1235,12 @@ test_build_opt () { } component_test_clang_opt () { - scripts/config.pl full + scripts/config.py full test_build_opt 'full config' clang -O0 -Os -O2 } component_test_gcc_opt () { - scripts/config.pl full + scripts/config.py full test_build_opt 'full config' gcc -O0 -Os -O2 }