Some ARM platforms, now, enable HW Stack Protection by default in the Board definition. So if some tests need to run without stack protection, it is not sufficient to disable TEST_HW_STACK_PROTECTION; we need to explicitly disable HW_STACK_PROTECTION. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
16 lines
385 B
Plaintext
16 lines
385 B
Plaintext
CONFIG_ZTEST=y
|
|
CONFIG_INIT_STACKS=y
|
|
CONFIG_PRINTK=y
|
|
CONFIG_THREAD_MONITOR=y
|
|
CONFIG_THREAD_STACK_INFO=y
|
|
CONFIG_TEST_HW_STACK_PROTECTION=n
|
|
# Disable HW Stack Protection (see #28664)
|
|
CONFIG_HW_STACK_PROTECTION=n
|
|
# to check idle thread
|
|
CONFIG_SYS_POWER_MANAGEMENT=y
|
|
CONFIG_SYS_POWER_SLEEP_STATES=y
|
|
CONFIG_SYS_PM_POLICY_APP=y
|
|
CONFIG_IDLE_STACK_SIZE=2048
|
|
# to check isr
|
|
CONFIG_IRQ_OFFLOAD=y
|