ci: re-enable eh_frame for the ESP32-P4

This commit is contained in:
Omar Chebib
2025-11-21 15:37:29 +08:00
committed by Sudeep Mohanty
parent a6eb9057fc
commit 52aa13146a
2 changed files with 0 additions and 6 deletions
@@ -29,10 +29,6 @@ tools/test_apps/system/eh_frame:
disable:
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3", "linux"]
reason: Only relevant for riscv targets
disable_test:
- if: IDF_TARGET == "esp32p4"
temporary: true
reason: p4 rev3 migration # TODO: IDF-14424
tools/test_apps/system/esp_intr_dump:
@@ -9,7 +9,6 @@ from pytest_embedded_idf.utils import idf_parametrize
@idf_parametrize(
'target', ['esp32c2', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32c61', 'esp32h2', 'esp32p4'], indirect=['target']
)
@pytest.mark.temp_skip_ci(targets=['esp32p4'], reason='p4 rev3 migration # TODO: IDF-14424')
def test_eh_frame_wdt(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.confirm_write('"Test task wdt can print backtrace with eh-frame"', expect_str='Running')
@@ -22,7 +21,6 @@ def test_eh_frame_wdt(dut: Dut) -> None:
@idf_parametrize(
'target', ['esp32c2', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32c61', 'esp32h2', 'esp32p4'], indirect=['target']
)
@pytest.mark.temp_skip_ci(targets=['esp32p4'], reason='p4 rev3 migration # TODO: IDF-14424')
def test_eh_frame_panic(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.confirm_write('"Test panic can print backtrace with eh-frame"', expect_str='Running')