From c72b6a75ba17d1216dd2d389e66566989667fb2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Tue, 9 Apr 2024 07:55:19 +0200 Subject: [PATCH] tests: drivers: uart: uart_pm: Limit scope for nrf54l15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some configurations which are not valid for nrf54l15. Mainly those which are using ENHANCED_POLL_OUT option which is not applicable for nrf54l15 because it has ENDTX_STOPTX short so PPI connection is not needed. Signed-off-by: Krzysztof Chruściński --- tests/drivers/uart/uart_pm/testcase.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/drivers/uart/uart_pm/testcase.yaml b/tests/drivers/uart/uart_pm/testcase.yaml index f90eed73949..355bb3c4282 100644 --- a/tests/drivers/uart/uart_pm/testcase.yaml +++ b/tests/drivers/uart/uart_pm/testcase.yaml @@ -5,6 +5,7 @@ common: harness: ztest platform_allow: - nrf52840dk/nrf52840 + - nrf54l15pdk/nrf54l15/cpuapp - nrf52_bsim harness_config: fixture: gpio_loopback @@ -24,6 +25,8 @@ tests: - CONFIG_UART_0_ENHANCED_POLL_OUT=n - CONFIG_UART_NRFX_UARTE_LEGACY_SHIM=y extra_args: DTC_OVERLAY_FILE="boards/nrf52840dk_nrf52840.overlay;nrf_rx_disable.overlay" + platform_exclude: + - nrf54l15pdk/nrf54l15/cpuapp drivers.uart.pm.enhanced_poll: extra_configs: @@ -31,6 +34,8 @@ tests: - CONFIG_UART_ASYNC_API=n - CONFIG_UART_0_ENHANCED_POLL_OUT=y - CONFIG_UART_NRFX_UARTE_LEGACY_SHIM=y + platform_exclude: + - nrf54l15pdk/nrf54l15/cpuapp drivers.uart.pm.int_driven: extra_configs: @@ -47,6 +52,8 @@ tests: - CONFIG_UART_ASYNC_API=n - CONFIG_UART_0_ENHANCED_POLL_OUT=y - CONFIG_UART_NRFX_UARTE_LEGACY_SHIM=y + platform_exclude: + - nrf54l15pdk/nrf54l15/cpuapp drivers.uart.pm.async: extra_configs: @@ -69,3 +76,5 @@ tests: - CONFIG_NRFX_TIMER2=y - CONFIG_UART_0_ENHANCED_POLL_OUT=y - CONFIG_UART_NRFX_UARTE_LEGACY_SHIM=y + platform_exclude: + - nrf54l15pdk/nrf54l15/cpuapp