mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5962a7e931
* Migrate test cases from IDF test runner to Unity fixture. * Tighten heap checks in the test case a bit. * Run formatting script on test_wl.c * NEW: Define 4 test configurations, including configs with 512 byte sector size. Previously these configs weren't tested in CI. * NEW: The test app only runs for ESP32 and ESP32-C3 (one chip for each architecture). The component is pretty high level so we don't need to test it for each chip. This reduces the load on CI.
16 lines
496 B
Plaintext
16 lines
496 B
Plaintext
# General options for additional checks
|
|
CONFIG_HEAP_POISONING_COMPREHENSIVE=y
|
|
CONFIG_COMPILER_WARN_WRITE_STRINGS=y
|
|
CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
|
|
CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y
|
|
CONFIG_COMPILER_STACK_CHECK_MODE_STRONG=y
|
|
CONFIG_COMPILER_STACK_CHECK=y
|
|
|
|
# Enable Unity fixture support
|
|
CONFIG_UNITY_ENABLE_FIXTURE=y
|
|
CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=n
|
|
|
|
# Custom partition table for this test app
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|