From 7213fbc2e220a8fe630951ac00444c10e018e420 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Fri, 27 Sep 2024 09:35:20 +0200 Subject: [PATCH] components-basic-checks: add new exception for MBEDTLS_CTR_DRBG_MAX_REQUEST Signed-off-by: Valerio Setti --- tests/scripts/components-basic-checks.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/scripts/components-basic-checks.sh b/tests/scripts/components-basic-checks.sh index 5ecd02954c..e9bfe5c15c 100644 --- a/tests/scripts/components-basic-checks.sh +++ b/tests/scripts/components-basic-checks.sh @@ -109,6 +109,9 @@ component_check_test_dependencies () { # the test code and that's probably the most convenient way of achieving # the test's goal. echo "MBEDTLS_ASN1_WRITE_C" >> $expected + # No PSA equivalent - used in test_suite_psa_crypto to get some "known" size + # for raw key generation. + echo "MBEDTLS_CTR_DRBG_MAX_REQUEST" >> $expected # No PSA equivalent - we should probably have one in the future. echo "MBEDTLS_ECP_RESTARTABLE" >> $expected # No PSA equivalent - needed by some init tests @@ -162,4 +165,3 @@ component_check_test_helpers () { msg "unit test: translate_ciphers.py" python3 -m unittest framework/scripts/translate_ciphers.py 2>&1 } -