Skip to content

Commit 914fc9f

Browse files
committed
test(lp_core): re-enabled C5 lp-core test
1 parent c5a7513 commit 914fc9f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

components/ulp/test_apps/.build-test-rules.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ components/ulp/test_apps/lp_core/lp_core_basic_tests:
44
disable:
55
- if: SOC_LP_CORE_SUPPORTED != 1
66
- if: CONFIG_NAME == "xtal" and SOC_CLK_LP_FAST_SUPPORT_XTAL != 1
7+
- if: CONFIG_NAME == "lp_vad" and SOC_LP_VAD_SUPPORTED != 1
78

89
components/ulp/test_apps/lp_core/lp_core_hp_uart:
910
disable:

components/ulp/test_apps/lp_core/lp_core_basic_tests/main/test_lp_core.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
2+
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
33
*
44
* SPDX-License-Identifier: Apache-2.0
55
*/
@@ -131,8 +131,7 @@ TEST_CASE("Test LP core delay", "[lp_core]")
131131
#define LP_TIMER_TEST_DURATION_S (5)
132132
#define LP_TIMER_TEST_SLEEP_DURATION_US (20000)
133133

134-
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C5)
135-
#if SOC_DEEP_SLEEP_SUPPORTED && CONFIG_RTC_FAST_CLK_SRC_RC_FAST
134+
#if SOC_DEEP_SLEEP_SUPPORTED
136135

137136
static void do_ulp_wakeup_deepsleep(lp_core_test_commands_t ulp_cmd)
138137
{
@@ -229,8 +228,7 @@ TEST_CASE_MULTIPLE_STAGES("LP Timer can wakeup lp core periodically during deep
229228
do_ulp_wakeup_with_lp_timer_deepsleep,
230229
check_reset_reason_and_sleep_duration);
231230

232-
#endif //#if SOC_DEEP_SLEEP_SUPPORTED && CONFIG_RTC_FAST_CLK_SRC_RC_FAST
233-
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C5)
231+
#endif //#if SOC_DEEP_SLEEP_SUPPORTED
234232

235233
TEST_CASE("LP Timer can wakeup lp core periodically", "[lp_core]")
236234
{

0 commit comments

Comments
 (0)