tools/unit_test_app: add targets specific configs for "aes_no_hw"

In ESP32-C2, there is no hardware AES and hence this config is not required
This commit is contained in:
Mahavir Jain
2022-06-10 15:07:10 +05:30
parent 4c3f5dba8d
commit a5fe7bb281
4 changed files with 16 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# This config is for all targets CONFIG_IDF_TARGET="esp32"
TEST_EXCLUDE_COMPONENTS=bt app_update test_utils TEST_EXCLUDE_COMPONENTS=bt app_update test_utils
TEST_COMPONENTS=mbedtls TEST_COMPONENTS=mbedtls
CONFIG_MBEDTLS_HARDWARE_AES=n CONFIG_MBEDTLS_HARDWARE_AES=n

View File

@@ -0,0 +1,5 @@
CONFIG_IDF_TARGET="esp32c3"
TEST_EXCLUDE_COMPONENTS=bt app_update test_utils
TEST_COMPONENTS=mbedtls
CONFIG_MBEDTLS_HARDWARE_AES=n
CONFIG_MBEDTLS_MPI_USE_INTERRUPT=n

View File

@@ -0,0 +1,5 @@
CONFIG_IDF_TARGET="esp32s2"
TEST_EXCLUDE_COMPONENTS=bt app_update test_utils
TEST_COMPONENTS=mbedtls
CONFIG_MBEDTLS_HARDWARE_AES=n
CONFIG_MBEDTLS_MPI_USE_INTERRUPT=n

View File

@@ -0,0 +1,5 @@
CONFIG_IDF_TARGET="esp32s3"
TEST_EXCLUDE_COMPONENTS=bt app_update test_utils
TEST_COMPONENTS=mbedtls
CONFIG_MBEDTLS_HARDWARE_AES=n
CONFIG_MBEDTLS_MPI_USE_INTERRUPT=n