From 297ad5186d8712a6a261bc0c14a51a1ff73c8011 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 23 Apr 2024 20:23:12 -0400 Subject: [PATCH] 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 --- kernel/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/Kconfig b/kernel/Kconfig index 8114a7b84dc..af51267edbf 100644 --- a/kernel/Kconfig +++ b/kernel/Kconfig @@ -156,7 +156,7 @@ config SCHED_CPU_MASK_PIN_ONLY config MAIN_STACK_SIZE int "Size of stack for initialization and main thread" default 2048 if COVERAGE_GCOV - default 512 if ZTEST && !(RISCV || X86 || ARM) + default 512 if ZTEST && !(RISCV || X86 || ARM || ARC) default 1024 help When the initialization is complete, the thread executing it then