zephyr/tests/subsys/ipc/pbuf/prj.conf
Arkadiusz Cholewinski 9d9089edd0 ztest: Add Support for Multiple Test Runs.
Introduces new kconfig options to enable multiple test runs in the ztest.

Signed-off-by: Arkadiusz Cholewinski <arkadiuszx.cholewinski@intel.com>
2024-09-18 15:32:28 +02:00

15 lines
500 B
Plaintext

CONFIG_ZTEST=y
CONFIG_ZTRESS=y
CONFIG_ZTEST_SHUFFLE=y
CONFIG_ZTEST_REPEAT=y
CONFIG_IPC_SERVICE=y
CONFIG_IPC_SERVICE_ICMSG=y
CONFIG_PBUF=y
# pbuf is designed to run writer and reader code on two CPUs.
# The write function cannot be preempted by the read function in a CPU,
# or the cache management could result in data corruption.
# In the tests, the reader and the writer are executed on a single CPU.
# Disable data cache management to prevent potential data corruption.
CONFIG_CACHE_MANAGEMENT=n