From 16d5160504f05c76401b12702c6cfb3ef9549163 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Tue, 5 Mar 2024 14:54:28 +0000 Subject: [PATCH] Allow the use of threading dependancies in PSA tests. Signed-off-by: Paul Elliott --- tests/scripts/all.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/scripts/all.sh b/tests/scripts/all.sh index 2b7ed00746..99c1d49001 100755 --- a/tests/scripts/all.sh +++ b/tests/scripts/all.sh @@ -1110,6 +1110,9 @@ component_check_test_dependencies () { echo "MBEDTLS_ECP_RESTARTABLE" >> $expected # No PSA equivalent - needed by some init tests echo "MBEDTLS_ENTROPY_NV_SEED" >> $expected + # No PSA equivalent - required to run threaded tests. + echo "MBEDTLS_THREADING_C" >> $expected + echo "MBEDTLS_THREADING_PTHREAD" >> $expected # Compare reality with expectation. # We want an exact match, to ensure the above list remains up-to-date.