drivers.uart.async_api.rtt test started failing on xmc45_relax_kit afterf423ec255fwhich set CONFIG_SERIAL_SUPPORT_ASYNC=y if uart rtt is enabled. This conflicts with the xmc4xxx uart driver which sets the same symbol conditionally if the dma is enabled in the device tree. The conflict created some warning during compilation causing the CI to fail. All the uart_async tests were disabled in71d0394752. This commit re-enables the test on xmc45_relax_kit and only excludes the rtt test that's failing. Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
36 lines
1.4 KiB
YAML
36 lines
1.4 KiB
YAML
common:
|
|
platform_exclude: seeeduino_xiao serpente arduino_nano_33_iot atsamr21_xpro
|
|
adafruit_itsybitsy_m4_express atsame54_xpro atsamc21n_xpro adafruit_trinket_m0
|
|
arduino_nano_33_iot arduino_zero atsamd21_xpro adafruit_feather_m0_basic_proto
|
|
adafruit_feather_m0_lora arduino_mkrzero atsaml21_xpro atsamr34_xpro stamp_c3
|
|
wio_terminal xiao_esp32c3 atsamd20_xpro
|
|
tags: drivers uart
|
|
tests:
|
|
drivers.uart.async_api:
|
|
filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC and not CONFIG_UART_MCUX_LPUART
|
|
harness: ztest
|
|
harness_config:
|
|
fixture: gpio_loopback
|
|
depends_on: gpio
|
|
drivers.uart.async_api.nrf_uart:
|
|
filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC
|
|
harness: ztest
|
|
platform_allow: nrf52840dk_nrf52840
|
|
harness_config:
|
|
fixture: gpio_loopback
|
|
depends_on: gpio
|
|
extra_args: DTC_OVERLAY_FILE="boards/nrf52840dk_nrf52840.overlay;boards/nrf_uart.overlay"
|
|
drivers.uart.async_api.rtt:
|
|
filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC and CONFIG_HAS_SEGGER_RTT and
|
|
not CONFIG_UART_MCUX_LPUART
|
|
extra_args: DTC_OVERLAY_FILE=boards/segger_rtt.overlay
|
|
extra_configs:
|
|
- CONFIG_USE_SEGGER_RTT=y
|
|
- CONFIG_UART_RTT=y
|
|
platform_exclude: xmc45_relax_kit
|
|
build_only: true
|
|
drivers.uart.async_api.lpuart:
|
|
filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC and CONFIG_UART_MCUX_LPUART
|
|
harness: ztest
|
|
depends_on: dma
|