Dmitry 0c5b5d759a Remove table for all supported chips as useless. 4 anos atrás
..
main 6582f7070e Update tests for assert and abort 4 anos atrás
test_panic_util 1ecdab3a70 CI: Debug GDB issues 4 anos atrás
CMakeLists.txt 9069f70db3 system: add option to enable undefined behavior sanitizer (UBSAN) 4 anos atrás
README.md 0c5b5d759a Remove table for all supported chips as useless. 4 anos atrás
app_test.py 6582f7070e Update tests for assert and abort 4 anos atrás
panic_tests.py 4548b6da63 test_apps/panic: remove workaround for incorrect GDB backtrace 4 anos atrás
sdkconfig.ci.coredump_flash_bin_crc 20af94ff53 Coredump config option rename throughout IDF 5 anos atrás
sdkconfig.ci.coredump_flash_elf_sha 20af94ff53 Coredump config option rename throughout IDF 5 anos atrás
sdkconfig.ci.coredump_uart_bin_crc 20af94ff53 Coredump config option rename throughout IDF 5 anos atrás
sdkconfig.ci.coredump_uart_elf_crc 20af94ff53 Coredump config option rename throughout IDF 5 anos atrás
sdkconfig.ci.gdbstub b1d64d1a61 test/panic: add gdbstub test configuration 5 anos atrás
sdkconfig.ci.panic 418b68a197 test_apps: add panic test 5 anos atrás
sdkconfig.defaults 9069f70db3 system: add option to enable undefined behavior sanitizer (UBSAN) 4 anos atrás

README.md

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"