This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: How to add timeout to Ada tests on Linux/ia64?
On Fri, 2004-03-26 at 23:26, H. J. Lu wrote:
> I know I had to kill at least the following:
>
> FAIL: c91004b
> FAIL: c940010
> FAIL: c94002g
> FAIL: c94007a
> FAIL: c95022b
> FAIL: c95072a
> FAIL: c95072b
> FAIL: c954016
Not good. I'd suggest to remove tasking support on ia64-linux,
in gcc/ada/Makefile.in replace LIBGNAT_TARGET_PAIRS as follows:
ifeq ($(strip $(filter-out %ia64 linux%,$(arch) $(osys))),)
LIBGNAT_TARGET_PAIRS = \
a-intnam.ads<4lintnam.ads \
s-inmaop.adb<7sinmaop.adb \
s-intman.adb<7sintman.adb \
s-osinte.ads<5iosinte.ads \
s-osinte.adb<5iosinte.adb \
s-osprim.adb<7sosprim.adb \
s-taprop.adb<5itaprop.adb \
s-tpopsp.adb<5atpopsp.adb \
s-taspri.ads<5itaspri.ads \
system.ads<55system.ads
by
a-intnam.ads<4nintnam.ads \
s-inmaop.adb<5ninmaop.adb \
s-intman.adb<5nintman.adb \
s-osinte.ads<5nosinte.ads \
s-osprim.adb<7sosprim.adb \
s-taprop.adb<5ntaprop.adb \
s-taspri.ads<5ntaspri.ads \
system.ads<55system.ads
The ACATS machinery should move all these tests as unsupported.
Arnaud, would it be ok to commit such a patch?
Laurent