From d75fa6bc13e69c34caa35c5d19d7eef9cada4940 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Tue, 11 Apr 2017 11:31:09 -0700 Subject: [PATCH] tests: sprintf: increase stack size A recent patch pinned the stack size for this test at 1024 instead of the platform default. This value wasn't sufficient on Xtensa. Set to 2048, which was the default on most platforms. Change-Id: I9a9d5fd448d2377aaf782c2c093a16147f31886a Signed-off-by: Andrew Boie --- tests/kernel/sprintf/prj.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kernel/sprintf/prj.conf b/tests/kernel/sprintf/prj.conf index be2cc128be6..429832a0b17 100644 --- a/tests/kernel/sprintf/prj.conf +++ b/tests/kernel/sprintf/prj.conf @@ -1,4 +1,4 @@ CONFIG_STDOUT_CONSOLE=y CONFIG_NUM_IRQS=2 CONFIG_FLOAT=y -CONFIG_MAIN_STACK_SIZE=1024 +CONFIG_MAIN_STACK_SIZE=2048