You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2003/09/18 09:39:35 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestServer.pm

stas        2003/09/18 00:39:35

  Modified:    perl-framework/Apache-Test/lib/Apache TestServer.pm
  Log:
  looks like there are a way too many errors reported by valgrind (all
  outside of modperl) adding  --error-limit=no allows to at least start the
  server
  
  Revision  Changes    Path
  1.65      +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestServer.pm
  
  Index: TestServer.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestServer.pm,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -u -r1.64 -r1.65
  --- TestServer.pm	13 Aug 2003 21:57:20 -0000	1.64
  +++ TestServer.pm	18 Sep 2003 07:39:35 -0000	1.65
  @@ -130,7 +130,7 @@
   
   sub valgrind_cmd {
       my($self, $valgrind) = @_;
  -    "$valgrind -v --leak-check=yes --show-reachable=yes";
  +    "$valgrind -v --leak-check=yes --show-reachable=yes --error-limit=no";
   }
   
   sub start_valgrind {