From 133f7aab2c937e4bb8db266df00367b7745cd547 Mon Sep 17 00:00:00 2001 From: Felix Conway Date: Wed, 19 Mar 2025 14:38:47 +0000 Subject: [PATCH] Add MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES to ignore list for CI With the removal of the component_test_psa_inject_entropy test, MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES is no longer set in any tests, and so the CI will complain unless it is added to the ignore list. Signed-off-by: Felix Conway --- tests/scripts/analyze_outcomes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index 5f8f910a62..c7c9ed5810 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -118,10 +118,11 @@ class CoverageTask(outcome_analysis.CoverageTask): # Untested platform-specific optimizations. # https://github.com/Mbed-TLS/mbedtls/issues/9588 'Config: MBEDTLS_HAVE_SSE2', - # Obsolete configuration option, to be replaced by + # Obsolete configuration options, to be replaced by # PSA entropy drivers. # https://github.com/Mbed-TLS/mbedtls/issues/8150 'Config: MBEDTLS_NO_PLATFORM_ENTROPY', + 'Config: MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES', # Untested aspect of the platform interface. # https://github.com/Mbed-TLS/mbedtls/issues/9589 'Config: MBEDTLS_PLATFORM_NO_STD_FUNCTIONS',