From 8214340bb095b2f09aa8cc3006bcc85cf654aa69 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 19 Jun 2024 15:09:27 +0200 Subject: [PATCH] Fix spurious * in regex `grep mbedtls_des*` would pick up e.g. mbedtls_derive_xxx. Signed-off-by: Gilles Peskine --- tests/scripts/all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 320088306e..229e6dff8c 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -2140,7 +2140,7 @@ component_test_psa_crypto_config_accel_cipher () { loc_accel_flags="$loc_accel_flags $( echo "$loc_accel_list" | sed 's/[^ ]* */-DMBEDTLS_PSA_ACCEL_&/g' )" make CFLAGS="$ASAN_CFLAGS -Werror -I../tests/include -I../tests -DPSA_CRYPTO_DRIVER_TEST -DMBEDTLS_TEST_LIBTESTDRIVER1 $loc_accel_flags" LDFLAGS="-ltestdriver1 $ASAN_CFLAGS" - not grep mbedtls_des* library/des.o + not grep mbedtls_des library/des.o msg "test: MBEDTLS_PSA_CRYPTO_CONFIG with accelerated hash" make test