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)
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user