OSDN Git Service

test/math: fix for MIPS that takes 32/64 suffix into account
[uclinux-h8/uClibc.git] / test / math / Makefile.in
1 # uClibc math tests
2 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
3
4 # libm-test.c is a generated file used by the tests internally so skip it
5 TESTS_DISABLED := libm-test
6
7 # gamma (removed from TESTS, need to add "small errors are ok" machinery there)
8 TESTS_DISABLED += gamma
9 ifeq ($(UCLIBC_HAS_LONG_DOUBLE_MATH),)
10 TESTS_DISABLED += test-ldouble test-ildoubl compile_test c99_test
11 CFLAGS_basic-test := -DNO_LONG_DOUBLE
12 endif
13 ifeq ($(DO_C99_MATH),)
14 TESTS_DISABLED += test-float test-ifloat test-double test-idouble rint signgam ilogb
15 endif
16
17 DODIFF_rint     := 1
18 DODIFF_signgam  := 1
19
20 # NOTE: For basic-test we must disable the floating point optimization.
21 #       Only for sh architecture because in the other architecture are disabled.
22 ifeq ($(TARGET_ARCH),sh)
23 CFLAGS_basic-test += -mieee
24 endif
25 EXTRA_CFLAGS    := -fno-builtin
26 EXTRA_LDFLAGS   := -lm
27
28 PERL := /usr/bin/perl
29
30 MDEPS := $(wildcard test-*.c)
31 $(MDEPS): libm-test.c
32
33 ULP_SUFFIX :=
34 ifeq ($(TARGET_ARCH),mips)
35 ULP_SUFFIX:=$(if $(CONFIG_MIPS_ISA_MIPS64R1)$(CONFIG_MIPS_ISA_MIPS64R2),64,32)
36 endif
37
38 TARGET_ULP := $(if $(wildcard libm-test-ulps-$(TARGET_ARCH)$(ULP_SUFFIX)),$(TARGET_ARCH)$(ULP_SUFFIX),generic)
39
40 libm-test.c: libm-test-ulps-$(TARGET_ULP) libm-test.inc gen-libm-test.pl
41         $(Q)$(PERL) ./gen-libm-test.pl -u libm-test-ulps-$(TARGET_ULP) ./libm-test.inc -o "." 2>&1 > /dev/null
42
43 EXTRA_CLEAN := libm-test.c libm-test-ulps.h