test/math: fix for MIPS that takes 32/64 suffix into account
[uclibc-ng.git] / test / math / Makefile.in
blobd241baa9ee0bbc521d06e585889a0d783dc61c2f
1 # uClibc math tests
2 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
4 # libm-test.c is a generated file used by the tests internally so skip it
5 TESTS_DISABLED := libm-test
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
17 DODIFF_rint := 1
18 DODIFF_signgam := 1
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
28 PERL := /usr/bin/perl
30 MDEPS := $(wildcard test-*.c)
31 $(MDEPS): libm-test.c
33 ULP_SUFFIX :=
34 ifeq ($(TARGET_ARCH),mips)
35 ULP_SUFFIX:=$(if $(CONFIG_MIPS_ISA_MIPS64R1)$(CONFIG_MIPS_ISA_MIPS64R2),64,32)
36 endif
38 TARGET_ULP := $(if $(wildcard libm-test-ulps-$(TARGET_ARCH)$(ULP_SUFFIX)),$(TARGET_ARCH)$(ULP_SUFFIX),generic)
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
43 EXTRA_CLEAN := libm-test.c libm-test-ulps.h