Fix math/test-fpucw-*.c for sysdeps test-fpucw.c overrides.
commit94d0cea0ad2c225019736c2f18e1280eae50fa6c
authorJoseph Myers <joseph@codesourcery.com>
Thu, 16 Jan 2014 05:30:52 +0000 (16 05:30 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 16 Jan 2014 05:30:52 +0000 (16 05:30 +0000)
tree57f94544b88d94da2f93ef33873fd7a1c09a83dd
parent5d29ccce66cc903fd9aa6e8f74c6be4dbc03d1f5
Fix math/test-fpucw-*.c for sysdeps test-fpucw.c overrides.

ARM has an override of the test math/test-fpucw.c, to disable (for
soft-float testing) definitions of hard-float macros in fpu_control.h
that the header normally defines not only when building for
hard-float, but also when building for soft-float with _LIBC defined
so that libc code can dynamically test whether VFP hardware is
present.  (_LIBC is defined when building tests, although ideally it
wouldn't be.)

The override doesn't work for the derived tests test-fpucw-*.c because
they use #include "" instead of <> to include test-fpucw.c, so always
get the math/ version instead of the ARM sysdeps override.  This patch
changes them to use <> so the sysdeps override is effective.
(test-fpucw-ieee-static.c doesn't need a change because it includes
test-fpucw-ieee.c, which isn't itself being overridden, which in turn
includes test-fpucw.c with a #include changed by this patch.)

Tested for ARM (big-endian soft-float, non-VFP hardware).

* math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
* math/test-fpucw-static.c: Likewise.
ChangeLog
math/test-fpucw-ieee.c
math/test-fpucw-static.c