This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

patch: disable ieee tests on ppc-*spe


Most of the tests in this directory fail anyhow.  The e500 is severely
IEEE brain-dead.

A few tests do pass, and I've sent a separate mail addressing this.

Committed.

	* gcc.c-torture/execute/ieee/ieee.exp: Disable on powerpc-*-*spe.

Index: gcc.c-torture/execute/ieee/ieee.exp
===================================================================
RCS file: /cvs/uberbaum/gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp,v
retrieving revision 1.9
diff -c -p -r1.9 ieee.exp
*** gcc.c-torture/execute/ieee/ieee.exp	19 Oct 2001 17:45:51 -0000	1.9
--- gcc.c-torture/execute/ieee/ieee.exp	15 Oct 2004 19:22:54 -0000
***************
*** 24,31 ****
  # C torture test suite, and other contributors.
  #
  
! # VAX does not have hardware support for IEEE arithmetic.
! if { [istarget "vax-*-*"] } { return }
  
  if $tracelevel then {
      strace $tracelevel
--- 24,31 ----
  # C torture test suite, and other contributors.
  #
  
! # Disable tests on machines with no hardware support for IEEE arithmetic.
! if { [istarget "vax-*-*"] || [ istarget "powerpc-*-*spe"] } { return }
  
  if $tracelevel then {
      strace $tracelevel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]