diff options
Diffstat (limited to 'test/math')
-rw-r--r-- | test/math/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/math/Makefile b/test/math/Makefile index e65f1700e..09f5425a5 100644 --- a/test/math/Makefile +++ b/test/math/Makefile @@ -1,10 +1,10 @@ # uClibc math tests # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. -TESTS := basic-test rint tst-definitions test-fpucw -# test-double test-idouble -# test-float test-ifloat -# test-ldouble test-ildouble +TESTS := basic-test rint tst-definitions test-fpucw test-float test-ifloat test-double test-idouble +ifeq ($(strip $(UCLIBC_HAS_LONG_DOUBLE_MATH)),y) +TESTS += test-ldouble test-ildouble +endif include ../Test.mak @@ -15,7 +15,7 @@ DODIFF_rint := 1 ifeq ($(TARGET_ARCH),sh) CFLAGS_basic-test := -mieee endif -EXTRA_CFLAGS := -DNO_LONG_DOUBLE -fno-builtin +EXTRA_CFLAGS := -fno-builtin EXTRA_LDFLAGS := -lm PERL := /usr/bin/perl |