tests: kernel: pipe : Update the stack size.

Now the stack size is a function of CONFIG_TEST_EXTRA_STACKSIZE.

Signed-off-by: Adithya Baglody <adithya.nagaraj.baglody@intel.com>
This commit is contained in:
Adithya Baglody 2018-05-08 10:57:04 +05:30 committed by Anas Nashif
parent d547c9b26c
commit 44057a197f
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#include <ztest.h>
K_PIPE_DEFINE(test_pipe, 256, 4);
#define STACK_SIZE (512)
#define STACK_SIZE (512 + CONFIG_TEST_EXTRA_STACKSIZE)
#define PIPE_SIZE (256)
K_THREAD_STACK_DEFINE(stack_1, STACK_SIZE);