Changeset 62915 in webkit


Ignore:
Timestamp:
Jul 9, 2010 1:13:09 AM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-07-09 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Add --html5-treebuilder option to run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=41922

We're down to one or two regressions in the HTML5lib test suite. It's
getting to be time to look at fixing LayoutTests.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r62884 r62915  
     12010-07-09  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Add --html5-treebuilder option to run-webkit-tests
     6        https://bugs.webkit.org/show_bug.cgi?id=41922
     7
     8        We're down to one or two regressions in the HTML5lib test suite.  It's
     9        getting to be time to look at fixing LayoutTests.
     10
     11        * Scripts/old-run-webkit-tests:
     12
    1132010-07-08  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/WebKitTools/Scripts/old-run-webkit-tests

    r62789 r62915  
    158158my $testsPerDumpTool = 1000;
    159159my $threaded = 0;
    160 my $html5parser = 0;
     160my $html5treebuilder = 0;
    161161# DumpRenderTree has an internal timeout of 30 seconds, so this must be > 30.
    162162my $timeoutSeconds = 35;
     
    287287  --[no-]strip-editing-callbacks  Remove editing callbacks from expected results
    288288  -t|--threaded                   Run a concurrent JavaScript thead with each test
    289   --html5-parser                  Run the tests using the HTML5 parser
     289  --html5-treebuilder             Run the tests using the HTML5 tree builder
    290290  --timeout t                     Sets the number of seconds before a test times out (default: $timeoutSeconds)
    291291  --valgrind                      Run DumpRenderTree inside valgrind (Qt/Linux only)
     
    331331    'strip-editing-callbacks!' => \$stripEditingCallbacks,
    332332    'threaded|t' => \$threaded,
    333     'html5-parser' => \$html5parser,
     333    'html5-treebuilder' => \$html5treebuilder,
    334334    'timeout=i' => \$timeoutSeconds,
    335335    'tolerance=f' => \$tolerance,
     
    570570push @toolArgs, "--pixel-tests" if $pixelTests;
    571571push @toolArgs, "--threaded" if $threaded;
    572 push @toolArgs, "--html5-parser" if $html5parser;
     572push @toolArgs, "--html5-treebuilder" if $html5treebuilder;
    573573push @toolArgs, "--complex-text" if $complexText;
    574574push @toolArgs, "-";
Note: See TracChangeset for help on using the changeset viewer.