Merge pull request #10201 from gabor-mezei-arm/9144_SHA3_testing

Add temporary test component for SHA3 testing
This commit is contained in:
Bence Szépkúti 2025-06-02 17:52:07 +00:00 committed by GitHub
commit 591d854b1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -351,3 +351,16 @@ component_test_memory_buffer_allocator () {
# MBEDTLS_MEMORY_BUFFER_ALLOC is slow. Skip tests that tend to time out.
tests/ssl-opt.sh -e '^DTLS proxy'
}
# Temporary component for SHA3 config option removal
# Will be removed according to this issue:
# https://github.com/Mbed-TLS/mbedtls/issues/10203
component_test_full_no_sha3 () {
msg "build: full config without SHA3"
scripts/config.py full
scripts/config.py unset-all 'PSA_WANT_ALG_SHA3_*'
make
msg "test: full - PSA_WANT_ALG_SHA3_*"
make test
}