From cf667dedb8b6f4f314860523627bbc5c796387ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Fri, 13 May 2016 20:04:31 +0200 Subject: [PATCH] tests: increase stack size from 8000 to 9000 clang failed with: ../src/systemcmds/tests/test_mathlib.cpp:56:5: fatal error: stack frame size of 7400 bytes in function 'test_mathlib' [-Wframe-larger-than=] int test_mathlib(int argc, char *argv[]) --- src/systemcmds/tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/systemcmds/tests/CMakeLists.txt b/src/systemcmds/tests/CMakeLists.txt index 460c46ac73..60f9cc885d 100644 --- a/src/systemcmds/tests/CMakeLists.txt +++ b/src/systemcmds/tests/CMakeLists.txt @@ -69,9 +69,9 @@ endif() px4_add_module( MODULE systemcmds__tests MAIN tests - STACK_MAIN 8000 + STACK_MAIN 9000 COMPILE_FLAGS - -Wframe-larger-than=6000 + -Wframe-larger-than=8000 -Wno-float-equal -O0 SRCS ${srcs}