diff --git a/testing/esp/test_bp.py b/testing/esp/test_bp.py index 76f515dfb..c8f80d3af 100644 --- a/testing/esp/test_bp.py +++ b/testing/esp/test_bp.py @@ -356,12 +356,11 @@ def setUp(self): DebuggerGenericTestAppTestsDual.setUp(self) BreakpointTestsImpl.setUp(self) - @skip_for_chip_and_ver('5.1', ['esp32s3']) + @skip_for_chip_and_ver('5.1', ['esp32s3'], "skipped - OCD-1027") def test_2cores_concurrently_hit_bps(self): two_cores_concurrently_hit_bps(self) - # OCD-773 - @skip_for_chip(['esp32', 'esp32p4']) + @skip_for_chip(['esp32', 'esp32p4'], "skipped - OCD-773") def test_appcpu_early_hw_bps(self): appcpu_early_hw_bps(self) @@ -375,8 +374,7 @@ def setUp(self): def test_2cores_concurrently_hit_bps(self): two_cores_concurrently_hit_bps(self) - # OCD-773 - @skip_for_chip(['esp32']) + @skip_for_chip(['esp32'], "skipped - OCD-773, OCD-1006") def test_appcpu_early_hw_bps(self): appcpu_early_hw_bps(self) diff --git a/testing/esp/test_special.py b/testing/esp/test_special.py index 8f6fe8bba..a824b3fea 100644 --- a/testing/esp/test_special.py +++ b/testing/esp/test_special.py @@ -44,7 +44,7 @@ def _debug_image(self): self.run_to_bp_and_check(dbg.TARGET_STOP_REASON_BP, 'vTaskDelay', ['vTaskDelay0']) self.clear_bps() - @skip_for_chip(['esp32s3', 'esp32', 'esp32c5', 'esp32c61']) + @skip_for_chip(['esp32s3', 'esp32', 'esp32c5', 'esp32c61'], "skipped - OCD-1011") def test_debugging_works_after_hw_reset(self): """ This test checks that debugging works after HW reset. diff --git a/testing/esp/test_sysview.py b/testing/esp/test_sysview.py index bd9aa2ec5..e898bb810 100644 --- a/testing/esp/test_sysview.py +++ b/testing/esp/test_sysview.py @@ -492,7 +492,7 @@ def test_heap_log_from_file(self): ######################################################################## # TESTS DEFINITION WITH SPECIAL TESTS # ######################################################################## -@skip_for_chip(['esp32s3']) +@skip_for_chip(['esp32s3'], "skipped - OCD-992") class SysViewTraceTestAppTestsDual(DebuggerGenericTestAppTests): """ Base class to run tests which use gcov test app in dual core mode """