summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-08-28 12:31:26 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-08-29 16:24:19 +0200
commit88041f133f06d81a9bf6c72fc6e41a604eddf4b8 (patch)
tree26e516885be9d8d5f893f3f7e33e0dee5f5ab34b /test
parent512fd3804b963a6738ce59d25dd44a7d9143b8b7 (diff)
test: disable test for systems without FPU
This test fails for systems without fpu. For example m68k build for non-mmu/non-fpu systems fail. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/math/Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/math/Makefile.in b/test/math/Makefile.in
index d241baa9e..147d579f4 100644
--- a/test/math/Makefile.in
+++ b/test/math/Makefile.in
@@ -13,6 +13,9 @@ endif
ifeq ($(DO_C99_MATH),)
TESTS_DISABLED += test-float test-ifloat test-double test-idouble rint signgam ilogb
endif
+ifeq ($(UCLIBC_HAS_FPU),)
+TESTS_DISABLED += test-fpucw
+endif
DODIFF_rint := 1
DODIFF_signgam := 1