Fu Hanxi d2aae6d53a fix: panic test case test_task_wdt il y a 3 ans
..
main 89e78976ab tests: panic: make 'get_test_name' work without VFS, add echo il y a 3 ans
CMakeLists.txt 8df306ab60 freertos,esp_system: make dependencies on some components optional il y a 4 ans
README.md 1457c42f6f bugfix/esp-gdbstrub: add missing function for esp32c3/esp32h2. il y a 4 ans
conftest.py 5c997bd5dd ci(pytest): upgrade to 0.7.0 il y a 3 ans
pytest_panic.py d2aae6d53a fix: panic test case test_task_wdt il y a 3 ans
sdkconfig.ci.coredump_flash_bin_crc 20af94ff53 Coredump config option rename throughout IDF il y a 5 ans
sdkconfig.ci.coredump_flash_elf_sha 20af94ff53 Coredump config option rename throughout IDF il y a 5 ans
sdkconfig.ci.coredump_uart_bin_crc 20af94ff53 Coredump config option rename throughout IDF il y a 5 ans
sdkconfig.ci.coredump_uart_elf_crc 20af94ff53 Coredump config option rename throughout IDF il y a 5 ans
sdkconfig.ci.gdbstub b1d64d1a61 test/panic: add gdbstub test configuration il y a 5 ans
sdkconfig.ci.panic 418b68a197 test_apps: add panic test il y a 5 ans
sdkconfig.defaults 9069f70db3 system: add option to enable undefined behavior sanitizer (UBSAN) il y a 4 ans

README.md

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

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"