1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config UART_ASYNC_DUAL_TEST_TIMEOUT
5	int "Single test case length (in milliseconds)"
6	# For the simulated devices, which are run by default in CI, we set it to less to not spend too
7	# much CI time
8	default 500 if SOC_SERIES_BSIM_NRFXX
9	default 3000
10	help
11	  For how many loops will the stress test run. The higher this number the longer the
12	  test and therefore the higher likelihood an unlikely race/event will be triggered.
13
14config PM_RUNTIME_IN_TEST
15	bool "Use runtime PM in the test"
16	select PM_DEVICE
17	select PM_DEVICE_RUNTIME
18
19config TEST_CHOPPED_TX
20	bool "Test chopped TX data"
21	default y
22	help
23	  When enabled then test cases that transmits TX packets in random chunks are
24	  performed. Some driver implementation do not support case when new TX data
25	  collides with handling of the RX timeout.
26
27# Include Zephyr's Kconfig
28source "Kconfig"
29