This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


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

PATCH: Fix gratuitously failing libstdc++ test cases


Tested on i386-*-freebsd4.3 in an already bootstrapped tree.  Applied.

	* testsuite/testsuite_hooks.h (__set_testsuite_memlimit): Add
	dummy default argument to the non-limit implementation.

Index: testsuite/testsuite_hooks.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/testsuite/testsuite_hooks.h,v
retrieving revision 1.1
diff -c -r1.1 testsuite_hooks.h
*** testsuite_hooks.h	2001/08/10 06:50:34	1.1
--- testsuite_hooks.h	2001/08/10 20:24:19
***************
*** 59,65 ****
  
  // Don't do memory limits.
  void
! __set_testsuite_memlimit(float)
  { }
  
  #else
--- 59,65 ----
  
  // Don't do memory limits.
  void
! __set_testsuite_memlimit(float x = 0)
  { }
  
  #else


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