kernel: increase main stack size for ztest on ARC

stack has been on the edge when using ztest, use 1024 for ARC as well.

Fixes #71797

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2024-04-23 20:23:12 -04:00 committed by Alberto Escolar
parent b8b33beaeb
commit 297ad5186d

View file

@ -156,7 +156,7 @@ config SCHED_CPU_MASK_PIN_ONLY
config MAIN_STACK_SIZE config MAIN_STACK_SIZE
int "Size of stack for initialization and main thread" int "Size of stack for initialization and main thread"
default 2048 if COVERAGE_GCOV default 2048 if COVERAGE_GCOV
default 512 if ZTEST && !(RISCV || X86 || ARM) default 512 if ZTEST && !(RISCV || X86 || ARM || ARC)
default 1024 default 1024
help help
When the initialization is complete, the thread executing it then When the initialization is complete, the thread executing it then