esp-idf/tools/test_apps/system/panic
Martin Vychodil c9c7573f71 Storage: Partition APIs moved to the new component 'esp_partition'
All the partition handling API functions and data-types were moved from the 'spi_flash' component to the new one named 'esp_partition'. See Storage 5.x migration guide for more details
2022-11-02 21:54:45 +01:00
..
main Storage: Partition APIs moved to the new component 'esp_partition' 2022-11-02 21:54:45 +01:00
test_panic_util
CMakeLists.txt
README.md ci: Enable esp32c6 example, test_apps, and unit tests CI build stage 2022-11-01 11:23:21 +08:00
conftest.py ci: fix import path 2022-10-20 20:34:51 +08:00
panic_utils.py
pytest_panic.py
sdkconfig.ci.coredump_flash_bin_crc
sdkconfig.ci.coredump_flash_elf_sha
sdkconfig.ci.coredump_uart_bin_crc
sdkconfig.ci.coredump_uart_elf_crc
sdkconfig.ci.gdbstub
sdkconfig.ci.panic
sdkconfig.defaults

README.md

Supported Targets ESP32 ESP32-C3 ESP32-C6 ESP32-H2 ESP32-S2 ESP32-S3

Building

Several configurations are provided as sdkconfig.ci.XXX and serve as a template.

Example with configuration "panic" for target ESP32

idf.py set-target esp32
cat sdkconfig.defaults sdkconfig.ci.panic > sdkconfig
idf.py build

Running

All the setup needs to be done as described in the test apps README, except that the test cases need to be specified when running the app:

python app_test.py test_panic_illegal_instruction

Multiple test cases are passed as additional arguments:

python app_test.py test_panic_illegal_instruction test_panic_int_wdt test_panic_storeprohibited

Note that you need to pick the correct test cases at run time according to the configuration you built before. The above examples are for configuration "panic"