zephyr/tests/kernel/profiling/profiling_api/prj.conf
Andrew Boie 7819a5a9a8 tests: profiling_api: increase idle stack size
This test for some reason wants to validate that
k_stack_analyze() works when called from the idle thread,
but with a default idle stack size of 256 this just results
in crashes.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2019-09-12 05:17:39 -04:00

18 lines
329 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
# 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
CONFIG_SMP=n