mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
These tests enable features they do not use -- the VFS console, Wi-Fi task core pinning, and the DS peripheral -- which shift memory layout, interrupt allocation, and peripheral access enough to fail them. Override the unused options in each test's sdkconfig and ignore the resulting unknown-symbol build warnings.
19 lines
844 B
Plaintext
19 lines
844 B
Plaintext
# NOTE: The runner for this test has flash-encryption enabled
|
|
# Flash Encryption
|
|
CONFIG_SECURE_FLASH_ENC_ENABLED=y
|
|
CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT=y
|
|
CONFIG_SECURE_BOOT_ALLOW_ROM_BASIC=y
|
|
CONFIG_SECURE_BOOT_ALLOW_JTAG=y
|
|
CONFIG_SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC=y
|
|
CONFIG_SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC=y
|
|
CONFIG_SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE=y
|
|
CONFIG_SECURE_FLASH_REQUIRE_ALREADY_ENABLED=y
|
|
CONFIG_PARTITION_TABLE_OFFSET=0x9000
|
|
|
|
# HMAC opaque driver test
|
|
CONFIG_MBEDTLS_TEST_HMAC_OPAQUE_EFUSE_KEY=y
|
|
CONFIG_MBEDTLS_TEST_HMAC_OPAQUE_EFUSE_KEY_ID=0
|
|
|
|
# CONFIG_ESP_TLS_USE_DS_PERIPHERAL resolves to its default (y) in this test's Kconfig closure, which fails the test_mbedtls_hmac_opaque test on esp32c3. Disable it to pass; root cause still under investigation. TODO: IDF-15856
|
|
CONFIG_ESP_TLS_USE_DS_PERIPHERAL=n
|