0008-disable-test-for-systems-without-FPU.patch 857 B

123456789101112131415161718192021222324252627282930
  1. From 012dfda4b27ad92edb6a9ea14e5ce4c5567d1c91 Mon Sep 17 00:00:00 2001
  2. From: Waldemar Brodkorb <wbx@uclibc-ng.org>
  3. Date: Thu, 21 Aug 2014 22:04:59 +0200
  4. Subject: [PATCH 8/9] disable test for systems without FPU
  5. This test fails for systems without fpu.
  6. For example m68k build for non-mmu/non-fpu systems fail.
  7. Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
  8. ---
  9. test/math/Makefile.in | 3 +++
  10. 1 file changed, 3 insertions(+)
  11. diff --git a/test/math/Makefile.in b/test/math/Makefile.in
  12. index d241baa..147d579 100644
  13. --- a/test/math/Makefile.in
  14. +++ b/test/math/Makefile.in
  15. @@ -13,6 +13,9 @@ endif
  16. ifeq ($(DO_C99_MATH),)
  17. TESTS_DISABLED += test-float test-ifloat test-double test-idouble rint signgam ilogb
  18. endif
  19. +ifeq ($(UCLIBC_HAS_FPU),)
  20. +TESTS_DISABLED += test-fpucw
  21. +endif
  22. DODIFF_rint := 1
  23. DODIFF_signgam := 1
  24. --
  25. 1.8.5.2 (Apple Git-48)