tests: ztest: fix error_hook test case fail in some board
Enlarge the test thread stack size, to fix test case fail in some board which need more stack size for testing, when CONFIG_EXCEPTION_DEBUG is enabled. Signed-off-by: Enjia Mai <enjiax.mai@intel.com>
This commit is contained in:
parent
b389d1940e
commit
bd1d0b22b5
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@
|
|||
#include <syscall_handler.h>
|
||||
#include <ztest_error_hook.h>
|
||||
|
||||
#define STACK_SIZE (512 + CONFIG_TEST_EXTRA_STACKSIZE)
|
||||
#define STACK_SIZE (1024 + CONFIG_TEST_EXTRA_STACKSIZE)
|
||||
#define THREAD_TEST_PRIORITY 5
|
||||
|
||||
static K_THREAD_STACK_DEFINE(tstack, STACK_SIZE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue