Alexey Lapshin fc7ac87b61 feat(tools): update gdb version to 12.1_20231023 2 лет назад
..
main 3f67722274 refactor(tools/test_apps): Move HAL tests for MPU to the `panic` test-app 2 лет назад
test_panic_util fc7ac87b61 feat(tools): update gdb version to 12.1_20231023 2 лет назад
CMakeLists.txt 6e0e7e34ea test_app: Extend `panic` app to include `memprot`-related tests 2 лет назад
README.md 4714521b21 feat(coredump): add panic details to the elf file 2 лет назад
conftest.py c756e0f477 ci: fix import path 3 лет назад
panic_utils.py 979b836c68 ci: rename module name due to the wrong import in other packages 3 лет назад
pytest_panic.py 3f67722274 refactor(tools/test_apps): Move HAL tests for MPU to the `panic` test-app 2 лет назад
sdkconfig.ci.coredump_extram_stack 835263e50a Coredump: add a test to check that coredump supports stacks in SPIRAM 3 лет назад
sdkconfig.ci.coredump_flash_bin_crc 34e77d6ccd test_panic: add CONFIG_HAL_ASSERTION_DISABLE to coredump_flash_bin_crc config 2 лет назад
sdkconfig.ci.coredump_flash_elf_sha 20af94ff53 Coredump config option rename throughout IDF 5 лет назад
sdkconfig.ci.coredump_uart_bin_crc 20af94ff53 Coredump config option rename throughout IDF 5 лет назад
sdkconfig.ci.coredump_uart_elf_crc 20af94ff53 Coredump config option rename throughout IDF 5 лет назад
sdkconfig.ci.gdbstub b1d64d1a61 test/panic: add gdbstub test configuration 5 лет назад
sdkconfig.ci.gdbstub_coredump ec57895db9 coredump: allow coredump at panic even if gdbstub is used. 2 лет назад
sdkconfig.ci.memprot_esp32c2 6e0e7e34ea test_app: Extend `panic` app to include `memprot`-related tests 2 лет назад
sdkconfig.ci.memprot_esp32c3 6e0e7e34ea test_app: Extend `panic` app to include `memprot`-related tests 2 лет назад
sdkconfig.ci.memprot_esp32c6 ed0a1f7b52 esp32c6: Fix incorrect PMP configuration 2 лет назад
sdkconfig.ci.memprot_esp32h2 b29ed0ba0b test_apps: enable memprot tests for ESP32-H2 target 2 лет назад
sdkconfig.ci.memprot_esp32s2 6e0e7e34ea test_app: Extend `panic` app to include `memprot`-related tests 2 лет назад
sdkconfig.ci.memprot_esp32s3 6e0e7e34ea test_app: Extend `panic` app to include `memprot`-related tests 2 лет назад
sdkconfig.ci.panic 418b68a197 test_apps: add panic test 5 лет назад
sdkconfig.ci.panic_delay cb9786d35e refactor(esp_system): reboot delay: added docs, protected by watchdog 3 лет назад
sdkconfig.defaults ed0a1f7b52 esp32c6: Fix incorrect PMP configuration 2 лет назад

README.md

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

Introduction

The panic test app checks the behavior of ESP-IDF Panic Handler.

This test app is relatively complex because it has to check many possible combinations of:

  • Failure scenario: abort, assertion, interrupt watchdog, illegal instruction, ...
  • Chip target: esp32, esp32c3, ...
  • Configuration: default, GDB Stub, Core Dump to UART, ...

Failure scenarios are implemented in test_panic.c. The test application receives the name of the scenario from console (e.g. test_illegal_instruction ). The failure scenario is executed and the app panics. Once the panic output is printed, the pytest-based test case parses the output and verifies that the behavior of the panic handler was correct.

In pytest_panic.py, there typically is one test function for each failure scenario. Each test function is then parametrized by config parameter. This creates "copies" of the test case for each of the configurations (default, GDB Stub, etc.) Tests are also parametrized with target-specific markers. Most tests can run on every target, but there are a few exceptions, such as failure scenarios specific to the dual-core chips.

The test cases use a customized DUT class PanicTestDut, defined in panic_dut.py. This class is derived from IdfDut. It defines several helper functions to make the test cases easier to read.

Building

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

For example, to build the test app with configuration panic for ESP32-C3, run:

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

Building multiple configurations side by side

If you need to work with multiple configurations at the same time it can be useful to keep each build in a separate directory. For example, to build the panic configuration for ESP32-C3 in a separate directory, run:

idf.py -DIDF_TARGET=esp32c3 -DSDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.panic" -DSDKCONFIG=build_esp32c3_panic/sdkconfig -B build_esp32c3_panic build

This way, all the build products and the sdkconfig file are kept in the directory build_esp32c3_gdbstub. pytest-embedded will search for binaries in this directory if you run tests as shown in the section below.

This approach allows switching between different build configurations and targets without deleting the build directories.

Running the app manually

idf.py flash monitor

(don't forget the -B argument if you have built the app in a directory other than build)

Once the app is running, input the name of the test (e.g. test_abort) and press Enter.

Running tests

Suppose you have built the app for a specific target and with a certain sdkconfig.ci.CONFIG config. You need to run the tests just for this config and the target:

pytest --target TARGET -k '[CONFIG]'

For example, if you have built the panic config for ESP32-C3, run:

pytest --target esp32c3 -k '[panic]'

Or, to run a single test for the given config, e.g. test_abort:

pytest --target esp32c3 -k 'test_abort[panic]'