1# Copyright (c) 2024 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config STRESS_TEST_REPS
5	int "Number of loops in the stress test"
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 10000
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
14# Include Zephyr's Kconfig
15source "Kconfig"
16