From a7d5662f15916c500fbe6418908f5135f0156061 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Wed, 29 Nov 2023 20:49:04 +0100 Subject: [PATCH] Allow PSA test cases to depend on test conditions In particular, this allows MBEDTLS_TEST_HOOKS. 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 93a32aefee..c3d2fb88c1 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -1046,7 +1046,7 @@ component_check_test_dependencies () { grep 'depends_on' \ tests/suites/test_suite_psa*.data tests/suites/test_suite_psa*.function | grep -Eo '!?MBEDTLS_[^: ]*' | - grep -v MBEDTLS_PSA_ | + grep -v -e MBEDTLS_PSA_ -e MBEDTLS_TEST_ | sort -u > $found # Expected ones with justification - keep in sorted order by ASCII table!