diff mbox

[08/12] disable test for systems without FPU

Message ID 1409119310-22929-8-git-send-email-wbx@openadk.org
State Superseded
Headers show

Commit Message

Waldemar Brodkorb Aug. 27, 2014, 6:01 a.m. UTC
From: Waldemar Brodkorb <wbx@uclibc-ng.org>

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>
---
 test/math/Makefile.in | 3 +++
 1 file changed, 3 insertions(+)
diff mbox

Patch

diff --git a/test/math/Makefile.in b/test/math/Makefile.in
index d241baa..147d579 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