From bc9955615199e2c6a0446f1d110f6e5b7bcb56dc Mon Sep 17 00:00:00 2001 From: Maciej Bocianski Date: Wed, 22 Nov 2017 12:54:43 +0100 Subject: [PATCH] threads test: increase threads heap size --- TESTS/mbedmicro-rtos-mbed/threads/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TESTS/mbedmicro-rtos-mbed/threads/main.cpp b/TESTS/mbedmicro-rtos-mbed/threads/main.cpp index fe581ec435..8940024eb5 100644 --- a/TESTS/mbedmicro-rtos-mbed/threads/main.cpp +++ b/TESTS/mbedmicro-rtos-mbed/threads/main.cpp @@ -26,8 +26,8 @@ #endif #define THREAD_STACK_SIZE 512 -#define PARALLEL_THREAD_STACK_SIZE 256 -#define CHILD_THREAD_STACK_SIZE 192 +#define PARALLEL_THREAD_STACK_SIZE 384 +#define CHILD_THREAD_STACK_SIZE 384 using namespace utest::v1;