From fc860e1010e1e976a481f3bea2abb35f032e5f90 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Thu, 26 Dec 2024 09:51:13 -0500 Subject: [PATCH] tests: posix: fs: increase ztest stack size from 1k to 2k The default stack size was causing qemu_arc/qemu_arc_em and qemu_arc/qemu_arc_hs to fail when a dirent object was stack-allocated. Increase the default stack size to accomodate for additional usage. Signed-off-by: Chris Friedt --- tests/posix/fs/prj.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/posix/fs/prj.conf b/tests/posix/fs/prj.conf index da73481ef4d..7fb9ec9aed0 100644 --- a/tests/posix/fs/prj.conf +++ b/tests/posix/fs/prj.conf @@ -5,4 +5,5 @@ CONFIG_POSIX_API=y CONFIG_POSIX_FILE_SYSTEM=y CONFIG_ZTEST=y CONFIG_MAIN_STACK_SIZE=4096 +CONFIG_ZTEST_STACK_SIZE=2048 CONFIG_EVENTFD=n