From 0cd07d907ed71d71598e7c3579f9bf4fa1911ef0 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 21 Mar 2022 10:57:36 +0800 Subject: [PATCH] CI: disable S3 sleep related example tests --- components/ulp/test/CMakeLists.txt | 5 +++++ examples/system/deep_sleep/pytest_deep_sleep.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/components/ulp/test/CMakeLists.txt b/components/ulp/test/CMakeLists.txt index 5ffed0f59f..7626bc5073 100644 --- a/components/ulp/test/CMakeLists.txt +++ b/components/ulp/test/CMakeLists.txt @@ -1,3 +1,8 @@ +if(IDF_TARGET STREQUAL "esp32s2" OR IDF_TARGET STREQUAL "esp32s3") + #Disabled for now due to RTC bug IDF-4801 + return() +endif() + if(CONFIG_ULP_COPROC_TYPE_FSM) set(src_dirs "ulp_fsm") diff --git a/examples/system/deep_sleep/pytest_deep_sleep.py b/examples/system/deep_sleep/pytest_deep_sleep.py index 3b23c12c7e..8d9bc4040f 100644 --- a/examples/system/deep_sleep/pytest_deep_sleep.py +++ b/examples/system/deep_sleep/pytest_deep_sleep.py @@ -11,7 +11,7 @@ touch_wake_up_support = ['esp32', 'esp32s2'] CONFIGS = [ pytest.param('esp32_singlecore', marks=[pytest.mark.esp32]), - pytest.param('generic', marks=[pytest.mark.supported_targets]), + pytest.param('generic', marks=[pytest.mark.esp32, pytest.mark.esp32c3]), # Disabled for now: IDF-4801 ]