From 32a432af95a48fc1544fada199edc8fa39457172 Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Tue, 28 Mar 2023 09:19:04 +0200 Subject: [PATCH] all.sh: Fix test component name The component_test_psa_crypto_drivers was renamed component_test_psa_crypto_builtin_keys in a previous commit. This was misleading as the goal of the component is not to test the builtin keys but to run the PSA unit tests with the test drivers doing the cryptographic operations. Signed-off-by: Ronald Cron --- tests/scripts/all.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index faa9b730b..64140ee7c 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -3245,8 +3245,8 @@ component_test_se_default () { make test } -component_test_psa_crypto_builtin_keys () { - msg "build: full + MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS" +component_test_psa_crypto_drivers () { + msg "build: full + MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS + test drivers" scripts/config.py full scripts/config.py set MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS loc_cflags="$ASAN_CFLAGS -DPSA_CRYPTO_DRIVER_TEST_ALL" @@ -3255,7 +3255,7 @@ component_test_psa_crypto_builtin_keys () { make CC=gcc CFLAGS="${loc_cflags}" LDFLAGS="$ASAN_CFLAGS" - msg "test: full + MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS" + msg "test: full + MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS + test drivers" make test }