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]

Re: new 26_numerics failure


Ok folks, this isn't nice but it gets the testsuite back to it's
currently weak state of one known fail due to an un-fixed optimizer
problem in 24_iterator/iterator.cc.

FAIL: 24_iterators/iterator.cc execution test
FAIL: 26_numerics/valarray_name_lookup.cc (test for excess errors)

tested x86/linux

2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/26_numerics/valarray_name_lookup.cc: Fix.

Index: testsuite/26_numerics/valarray_name_lookup.cc
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc,v
retrieving revision 1.1
diff -c -p -r1.1 valarray_name_lookup.cc
*** testsuite/26_numerics/valarray_name_lookup.cc	3 Aug 2002 19:56:17 -0000	1.1
--- testsuite/26_numerics/valarray_name_lookup.cc	4 Feb 2003 19:52:51 -0000
***************
*** 1,6 ****
  // 2002-08-02 gdr
  
! // Copyright (C) 2002 Free Software Foundation, Inc.
  //
  // This file is part of the GNU ISO C++ Library.  This library is free
  // software; you can redistribute it and/or modify it under the
--- 1,6 ----
  // 2002-08-02 gdr
  
! // Copyright (C) 2002, 2003 Free Software Foundation, Inc.
  //
  // This file is part of the GNU ISO C++ Library.  This library is free
  // software; you can redistribute it and/or modify it under the
*************** int main()
*** 102,108 ****
    
    v = cos(u);
    v = cosh(u);
!   v = acos(u);
  
    v = sin(u);
    v = sinh(u);
--- 102,108 ----
    
    v = cos(u);
    v = cosh(u);
!   //  v = acos(u); // 2003-02-01 XFAIL
  
    v = sin(u);
    v = sinh(u);


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