diff options
| author | seyko <seyko2@gmail.com> | 2015-03-04 09:52:47 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2015-03-04 09:52:47 +0300 |
| commit | d972472c53f6f1aec8c3f9090aab8a7c2d4180d9 (patch) | |
| tree | 77ff715def56bf43c0c5e3301eac6983e2f4a2d7 /tests/tests2/Makefile | |
| parent | f1e4b2b7f39b671468820be78c524ee5a7b34efd (diff) | |
| download | tinycc-d972472c53f6f1aec8c3f9090aab8a7c2d4180d9.tar.gz tinycc-d972472c53f6f1aec8c3f9090aab8a7c2d4180d9.tar.bz2 | |
Disable floating-point test for ARM soft-float
From: Matteo Cypriani <mcy@lm7.fr>
Date: Fri, 5 Sep 2014 23:22:56 -0400
Subject: Disable floating-point test for ARM soft-float
tcc is not yet capable of doing softfloat floating-point operations on
ARM, therefore we disable this test for these platforms. Note that tcc
displays a warning to warn ARM users about this limitation
(debian)
Diffstat (limited to 'tests/tests2/Makefile')
| -rw-r--r-- | tests/tests2/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tests2/Makefile b/tests/tests2/Makefile index ee4a033..8bf753f 100644 --- a/tests/tests2/Makefile +++ b/tests/tests2/Makefile @@ -100,6 +100,9 @@ TESTS = \ SKIP = 34_array_assignment.test # some tests do not pass on all platforms, remove them for now +ifeq ($(CONFIG_arm_eabi),yes) # not ARM soft-float + SKIP += 22_floating_point.test +endif ifeq ($(TARGETOS),Darwin) SKIP += 40_stdio.test endif |
