From aa426e023c7f0dd30dbd0c7f2cdd1e191aac2b6f Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Wed, 8 Feb 2023 12:52:10 +0100 Subject: [PATCH] SHA3 cannot be tested alone, as ENTROPY_C needs also SHA256 enabled. Signed-off-by: Pol Henarejos --- tests/scripts/depends.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/depends.py b/tests/scripts/depends.py index 52ca41261..83401ecb4 100755 --- a/tests/scripts/depends.py +++ b/tests/scripts/depends.py @@ -418,7 +418,8 @@ class DomainData: 'hashes': DualDomain(hash_symbols, build_and_test, exclude=r'MBEDTLS_(MD|RIPEMD|SHA1_)' \ '|MBEDTLS_SHA224_' \ - '|MBEDTLS_SHA384_'), + '|MBEDTLS_SHA384_' \ + '|MBEDTLS_SHA3_'), # Key exchange types. 'kex': ExclusiveDomain(key_exchange_symbols, build_and_test), 'pkalgs': ComplementaryDomain(['MBEDTLS_ECDSA_C',