Skip to content

Commit 7e0e446

Browse files
committed
tests: increase stack requirements on some tests
Several tests require additional stack space to accommodate a deeper call stack due to inability to inline functions in an upcoming enhancement. Signed-off-by: Peter Bigot <[email protected]>
1 parent 42eeb7a commit 7e0e446

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tests/kernel/context/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#endif
3636

3737
#define THREAD_STACKSIZE (512 + CONFIG_TEST_EXTRA_STACKSIZE)
38-
#define THREAD_STACKSIZE2 (384 + CONFIG_TEST_EXTRA_STACKSIZE)
38+
#define THREAD_STACKSIZE2 (448 + CONFIG_TEST_EXTRA_STACKSIZE)
3939
#define THREAD_PRIORITY 4
4040

4141
#define THREAD_SELF_CMD 0

tests/kernel/threads/tls/prj.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
CONFIG_ZTEST=y
22
CONFIG_THREAD_LOCAL_STORAGE=y
3+
CONFIG_IDLE_STACK_SIZE=1024
4+
CONFIG_MAIN_STACK_SIZE=1280

0 commit comments

Comments
 (0)