Changeset 47223 in webkit


Ignore:
Timestamp:
Aug 13, 2009 11:34:57 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-08-13 Eric Seidel <eric@webkit.org>

Reviewed by Simon Fraser.

REGRESSION(r47175): error running run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=28261

Fix "Use of uninitialized value in concatenation (.) or string at
WebKitTools/Scripts/run-webkit-tests line 191." by setting
$testsPerDumpTool to 1000 by default.

  • Scripts/run-webkit-tests:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r47220 r47223  
     12009-08-13  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Simon Fraser.
     4
     5        REGRESSION(r47175): error running run-webkit-tests
     6        https://bugs.webkit.org/show_bug.cgi?id=28261
     7
     8        Fix "Use of uninitialized value in concatenation (.) or string at
     9        WebKitTools/Scripts/run-webkit-tests line 191." by setting
     10        $testsPerDumpTool to 1000 by default.
     11
     12        * Scripts/run-webkit-tests:
     13
    1142009-08-13  Nate Chapin  <japhet@chromium.org>
    215
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r47175 r47223  
    123123my $shouldCheckLeaks = 0;
    124124my $showHelp = 0;
    125 my $testsPerDumpTool;
     125my $testsPerDumpTool = 1000;
    126126my $testHTTP = 1;
    127127my $testMedia = 1;
     
    279279
    280280my $configuration = configuration();
    281 
    282 $testsPerDumpTool = 1000 if !$testsPerDumpTool;
    283281
    284282$verbose = 1 if $testsPerDumpTool == 1;
Note: See TracChangeset for help on using the changeset viewer.