Merge pull request #8599 from valeriosetti/issue8357

G2 wrap-up
This commit is contained in:
Manuel Pégourié-Gonnard 2023-12-13 08:17:27 +00:00 committed by GitHub
commit 7404af6ec3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 72 additions and 1 deletions

View file

@ -3265,6 +3265,10 @@ component_test_tfm_config_p256m_driver_accel_ec () {
# Check that p256m was built
grep -q p256_ecdsa_ library/libmbedcrypto.a
# In "config-tfm.h" we disabled CIPHER_C tweaking TF-M's configuration
# files, so we want to ensure that it has not be re-enabled accidentally.
not grep mbedtls_cipher library/cipher.o
# Run the tests
msg "test: TF-M config + p256m driver + accel ECDH(E)/ECDSA"
make test
@ -3286,6 +3290,10 @@ component_test_tfm_config() {
# Check that p256m was not built
not grep p256_ecdsa_ library/libmbedcrypto.a
# In "config-tfm.h" we disabled CIPHER_C tweaking TF-M's configuration
# files, so we want to ensure that it has not be re-enabled accidentally.
not grep mbedtls_cipher library/cipher.o
msg "test: TF-M config"
make test
}