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[])
This commit is contained in:
Beat Küng 2016-05-13 20:04:31 +02:00 committed by Lorenz Meier
parent d082060429
commit cf667dedb8
1 changed files with 2 additions and 2 deletions

View File

@ -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}