diff options
author | Gregory Fong <gregory.0xf0@gmail.com> | 2014-04-01 18:12:14 -0700 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-04-04 16:13:16 +0200 |
commit | b281287719e17093aaca2bede992fb2e748a3731 (patch) | |
tree | 34b6261e6835ea508441c98a74e26c183a2f7ed9 /test | |
parent | 85891447211add633243af01e960762c9a57b435 (diff) |
test/math: don't try to build test dep as test
libm-test.c is a generated file needed by the other math tests, but
test rules were trying to build it as a test if trying to compile the
tests a second time.
Signed-off-by: Gregory Fong <gregory.0xf0@gmail.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/math/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/math/Makefile.in b/test/math/Makefile.in index 470a6213a..914fc75a8 100644 --- a/test/math/Makefile.in +++ b/test/math/Makefile.in @@ -1,8 +1,11 @@ # uClibc math tests # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# libm-test.c is a generated file used by the tests internally so skip it +TESTS_DISABLED := libm-test + # gamma (removed from TESTS, need to add "small errors are ok" machinery there) -TESTS_DISABLED := gamma +TESTS_DISABLED += gamma ifeq ($(UCLIBC_HAS_LONG_DOUBLE_MATH),) TESTS_DISABLED += test-ldouble test-ildoubl compile_test c99_test else |