From fb7f7fcbc408f94b9faafd7f8da2af0ec59f8753 Mon Sep 17 00:00:00 2001 From: Jaxson Han Date: Fri, 16 Jun 2023 11:31:43 +0800 Subject: [PATCH] tests: kernel: threads: Slightly increase the heap pool size The heap size is set to 20000 which is just not enough for v8r platform. Fix testcases failure in tests/kernel/threads/ by increasing the heap size to 21504. Signed-off-by: Jaxson Han --- tests/kernel/threads/dynamic_thread/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kernel/threads/dynamic_thread/prj.conf b/tests/kernel/threads/dynamic_thread/prj.conf index 8174ea88529..f7d01312787 100644 --- a/tests/kernel/threads/dynamic_thread/prj.conf +++ b/tests/kernel/threads/dynamic_thread/prj.conf @@ -1,4 +1,4 @@ CONFIG_ZTEST=y CONFIG_ZTEST_NEW_API=y CONFIG_TEST_USERSPACE=y -CONFIG_HEAP_MEM_POOL_SIZE=20000 +CONFIG_HEAP_MEM_POOL_SIZE=21504