[webkit-changes] cvs commit: WebKitTools/Scripts run-webkit-tests

Eric eseidel at opensource.apple.com
Mon Sep 19 18:23:12 PDT 2005


eseidel     05/09/19 18:23:12

  Modified:    .        ChangeLog
               Scripts  run-webkit-tests
  Log:
  Bug #: 4613
  Submitted by: eseidel
  Reviewed by: darin
          * Scripts/run-webkit-tests: added --guard-malloc option
          http://bugzilla.opendarwin.org/show_bug.cgi?id=4613
  
  Revision  Changes    Path
  1.103     +7 -0      WebKitTools/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitTools/ChangeLog,v
  retrieving revision 1.102
  retrieving revision 1.103
  diff -u -r1.102 -r1.103
  --- ChangeLog	16 Sep 2005 23:34:16 -0000	1.102
  +++ ChangeLog	20 Sep 2005 01:23:11 -0000	1.103
  @@ -1,3 +1,10 @@
  +2005-09-19  Eric Seidel  <eseidel at apple.com>
  +
  +        Reviewed by darin.
  +
  +        * Scripts/run-webkit-tests: added --guard-malloc option
  +        http://bugzilla.opendarwin.org/show_bug.cgi?id=4613
  +
   2005-09-16  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by geoff
  
  
  
  1.26      +3 -0      WebKitTools/Scripts/run-webkit-tests
  
  Index: run-webkit-tests
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/run-webkit-tests,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- run-webkit-tests	15 Sep 2005 05:13:52 -0000	1.25
  +++ run-webkit-tests	20 Sep 2005 01:23:12 -0000	1.26
  @@ -59,6 +59,7 @@
   my $testSVGs = '';
   my $pixelTests = '';
   my $checkLeaks = '';
  +my $guardMalloc = '';
   my $maxWidth = '';
   my $maxHeight = '';
   my $verbose = 0;
  @@ -68,6 +69,7 @@
   GetOptions('svg' => \$testSVGs, 
       'pixel-tests|p' => \$pixelTests,
       'leaks|l' => \$checkLeaks,
  +    'guard-malloc|g' => \$guardMalloc,
       'max-width|w' => \$maxWidth,
       'max-height|h' => \$maxHeight, 
       'verbose|v' => \$verbose,
  @@ -172,6 +174,7 @@
           local %ENV;
           $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
           $ENV{MallocStackLogging} = 1 if $checkLeaks;
  +        $ENV{DYLD_INSERT_LIBRARIES} = "/usr/lib/libgmalloc.dylib" if $guardMalloc;
           $dumpToolPID = open2(\*IN, \*OUT, $tool, @toolArgs) or die;
           $toolOpen = 1;
       }
  
  
  



More information about the webkit-changes mailing list