diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-28 23:13:08 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-28 23:13:08 +0200 |
commit | 94d653c29957dcc7c1844deab317a6eec75138d5 (patch) | |
tree | 4b73e862df74a098e62639ca90af57f1937ffd35 /toolchain/uclibc | |
parent | 75f6c379c5f19b99ea5488a73aac91f29a51273e (diff) |
this one is not yet in.
Diffstat (limited to 'toolchain/uclibc')
-rw-r--r-- | toolchain/uclibc/patches/0.9.34-git/0008-test-disable-test-for-systems-without-FPU.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/toolchain/uclibc/patches/0.9.34-git/0008-test-disable-test-for-systems-without-FPU.patch b/toolchain/uclibc/patches/0.9.34-git/0008-test-disable-test-for-systems-without-FPU.patch new file mode 100644 index 000000000..92423da06 --- /dev/null +++ b/toolchain/uclibc/patches/0.9.34-git/0008-test-disable-test-for-systems-without-FPU.patch @@ -0,0 +1,30 @@ +From a211ac98cf111975f9ede6d4e7ea61d8c7b047c2 Mon Sep 17 00:00:00 2001 +From: Waldemar Brodkorb <wbx@openadk.org> +Date: Thu, 21 Aug 2014 22:04:59 +0200 +Subject: [PATCH v2 08/12] 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> +--- + test/math/Makefile.in | 3 +++ + 1 file changed, 3 insertions(+) + +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 +-- +1.8.5.2 (Apple Git-48) + |