Skip to content

Commit

Permalink
tests: kernel: increase stack buffer when code coverage enabled
Browse files Browse the repository at this point in the history
increase stack buffer when code coverage enabled.

Fixes: #15794.

Signed-off-by: Wentong Wu <wentong.wu@intel.com>
  • Loading branch information
wentongwu authored and andrewboie committed May 16, 2019
1 parent 7aecb03 commit fc3270d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kernel/mem_protect/userspace/src/main.c
Expand Up @@ -903,7 +903,7 @@ static void domain_remove_part_context_switch(void)
*/

#define NUM_STACKS 3
#define STEST_STACKSIZE 1024
#define STEST_STACKSIZE (1024 + CONFIG_TEST_EXTRA_STACKSIZE)
K_THREAD_STACK_DEFINE(stest_stack, STEST_STACKSIZE);
K_THREAD_STACK_ARRAY_DEFINE(stest_stack_array, NUM_STACKS, STEST_STACKSIZE);

Expand Down

0 comments on commit fc3270d

Please sign in to comment.