mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
481409ec05
Small quality-of-life improvement, make it easier to run specific test cases, when debugging the tests locally. Take the optional list of test cases to run from the command line.
252 lines
6.3 KiB
Python
252 lines
6.3 KiB
Python
#!/usr/bin/env python
|
|
import sys
|
|
import panic_tests as test
|
|
from test_panic_util.test_panic_util import panic_test, run_all
|
|
|
|
|
|
# test_task_wdt
|
|
|
|
@panic_test()
|
|
def test_panic_task_wdt(env, extra_data):
|
|
test.task_wdt_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_task_wdt_uart_elf_crc(env, extra_data):
|
|
test.task_wdt_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_task_wdt_uart_bin_crc(env, extra_data):
|
|
test.task_wdt_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_task_wdt_flash_elf_sha(env, extra_data):
|
|
test.task_wdt_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_task_wdt_flash_bin_crc(env, extra_data):
|
|
test.task_wdt_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_int_wdt
|
|
|
|
@panic_test()
|
|
def test_panic_int_wdt(env, extra_data):
|
|
test.int_wdt_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_uart_elf_crc(env, extra_data):
|
|
test.int_wdt_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_uart_bin_crc(env, extra_data):
|
|
test.int_wdt_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_flash_elf_sha(env, extra_data):
|
|
test.int_wdt_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_flash_bin_crc(env, extra_data):
|
|
test.int_wdt_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_int_wdt_cache_disabled
|
|
|
|
@panic_test()
|
|
def test_panic_int_wdt_cache_disabled(env, extra_data):
|
|
test.int_wdt_cache_disabled_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_cache_disabled_uart_elf_crc(env, extra_data):
|
|
test.int_wdt_cache_disabled_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_cache_disabled_uart_bin_crc(env, extra_data):
|
|
test.int_wdt_cache_disabled_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_cache_disabled_flash_elf_sha(env, extra_data):
|
|
test.int_wdt_cache_disabled_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_int_wdt_cache_disabled_flash_bin_crc(env, extra_data):
|
|
test.int_wdt_cache_disabled_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_cache_error
|
|
|
|
@panic_test()
|
|
def test_panic_cache_error(env, extra_data):
|
|
test.cache_error_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_cache_error_uart_elf_crc(env, extra_data):
|
|
test.cache_error_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_cache_error_uart_bin_crc(env, extra_data):
|
|
test.cache_error_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_cache_error_flash_elf_sha(env, extra_data):
|
|
test.cache_error_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_cache_error_flash_bin_crc(env, extra_data):
|
|
test.cache_error_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_stack_overflow
|
|
|
|
@panic_test()
|
|
def test_panic_stack_overflow(env, extra_data):
|
|
test.stack_overflow_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_stack_overflow_uart_elf_crc(env, extra_data):
|
|
test.stack_overflow_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_stack_overflow_uart_bin_crc(env, extra_data):
|
|
test.stack_overflow_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_stack_overflow_flash_elf_sha(env, extra_data):
|
|
test.stack_overflow_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_stack_overflow_flash_bin_crc(env, extra_data):
|
|
test.stack_overflow_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_instr_fetch_prohibited
|
|
|
|
@panic_test()
|
|
def test_panic_instr_fetch_prohibited(env, extra_data):
|
|
test.instr_fetch_prohibited_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_instr_fetch_prohibited_uart_elf_crc(env, extra_data):
|
|
test.instr_fetch_prohibited_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_instr_fetch_prohibited_uart_bin_crc(env, extra_data):
|
|
test.instr_fetch_prohibited_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_instr_fetch_prohibited_flash_elf_sha(env, extra_data):
|
|
test.instr_fetch_prohibited_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_instr_fetch_prohibited_flash_bin_crc(env, extra_data):
|
|
test.instr_fetch_prohibited_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_illegal_instruction
|
|
|
|
@panic_test()
|
|
def test_panic_illegal_instruction(env, extra_data):
|
|
test.illegal_instruction_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_illegal_instruction_uart_elf_crc(env, extra_data):
|
|
test.illegal_instruction_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_illegal_instruction_uart_bin_crc(env, extra_data):
|
|
test.illegal_instruction_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_illegal_instruction_flash_elf_sha(env, extra_data):
|
|
test.illegal_instruction_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_illegal_instruction_flash_bin_crc(env, extra_data):
|
|
test.illegal_instruction_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_storeprohibited
|
|
|
|
@panic_test()
|
|
def test_panic_storeprohibited(env, extra_data):
|
|
test.storeprohibited_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_storeprohibited_uart_elf_crc(env, extra_data):
|
|
test.storeprohibited_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_storeprohibited_uart_bin_crc(env, extra_data):
|
|
test.storeprohibited_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_storeprohibited_flash_elf_sha(env, extra_data):
|
|
test.storeprohibited_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_storeprohibited_flash_bin_crc(env, extra_data):
|
|
test.storeprohibited_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
# test_abort
|
|
|
|
@panic_test()
|
|
def test_panic_abort(env, extra_data):
|
|
test.abort_inner(env, "panic")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_abort_uart_elf_crc(env, extra_data):
|
|
test.abort_inner(env, "coredump_uart_elf_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_abort_uart_bin_crc(env, extra_data):
|
|
test.abort_inner(env, "coredump_uart_bin_crc")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_abort_flash_elf_sha(env, extra_data):
|
|
test.abort_inner(env, "coredump_flash_elf_sha")
|
|
|
|
|
|
@panic_test()
|
|
def test_coredump_abort_flash_bin_crc(env, extra_data):
|
|
test.abort_inner(env, "coredump_flash_bin_crc")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run_all(__file__, sys.argv[1:])
|