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]

Re: PATCH: Disable IEEE tests on VAX


Richard Henderson <rth@redhat.com> writes:
> On Thu, May 10, 2001 at 11:09:59AM -0400, John David Anglin wrote:
> > 	* gcc.c-torture/execute/ieee/ieee.exp: Don't run ieee tests on VAX.
> Ok.

Then I guess something like this would be in order too:

2001-05-13  Lars Brinkhoff  <lars@nocrew.org>

	* gcc.c-torture/execute/ieee/ieee.exp: Don't run ieee tests on PDP-11.

Index: testsuite/gcc.c-torture/execute/ieee/ieee.exp
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/execute/ieee/ieee.exp,v
retrieving revision 1.5
diff -c -3 -p -r1.5 ieee.exp
*** ieee.exp	2001/05/11 16:56:29	1.5
--- ieee.exp	2001/05/13 12:04:29
***************
*** 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,32 ----
  # C torture test suite, and other contributors.
  #
  
! # VAX and PDP-11 do not have hardware support for IEEE arithmetic.
  if { [istarget "vax-*-*"] } { return }
+ if { [istarget "pdp11-*-*"] } { 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]