|
@@ -1,14 +1,16 @@
|
|
|
# uClibc math tests
|
|
|
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
|
|
|
|
|
|
-TESTS := basic-test tst-definitions test-fpucw test-float test-ifloat test-double test-idouble \
|
|
|
- rint signgam ilogb
|
|
|
# gamma (removed from TESTS, need to add "small errors are ok" machinery there)
|
|
|
-ifeq ($(UCLIBC_HAS_LONG_DOUBLE_MATH),y)
|
|
|
-TESTS += test-ldouble test-ildoubl compile_test c99_test
|
|
|
+TESTS_DISABLED := gamma
|
|
|
+ifeq ($(UCLIBC_HAS_LONG_DOUBLE_MATH),)
|
|
|
+TESTS_DISABLED += test-ldouble test-ildoubl compile_test c99_test
|
|
|
else
|
|
|
CFLAGS_basic-test := -DNO_LONG_DOUBLE
|
|
|
endif
|
|
|
+ifeq ($(DO_C99_MATH),)
|
|
|
+TESTS_DISABLED += test-float test-ifloat test-double test-idouble rint signgam ilogb
|
|
|
+endif
|
|
|
|
|
|
DODIFF_rint := 1
|
|
|
DODIFF_signgam := 1
|