Changeset 52976 in webkit


Ignore:
Timestamp:
Jan 7, 2010 11:56:15 PM (14 years ago)
Author:
Csaba Osztrogonác
Message:

Run the http and websocket tests after all other tests.

Patch by Andras Becsi <abecsi@inf.u-szeged.hu> on 2010-01-07
Reviewed by Darin Adler.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52969 r52976  
     12010-01-07  Andras Becsi  <abecsi@inf.u-szeged.hu>
     2
     3        Reviewed by Darin Adler.
     4
     5        Run the http and websocket tests after all other tests.
     6
     7        * Scripts/run-webkit-tests:
     8
    192010-01-07  Adam Barth  <abarth@webkit.org>
    210
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r52939 r52976  
    22222222    @testsToRun = sort pathcmp @testsToRun;
    22232223
     2224    my @httpTests;
     2225    my @websocketTests;
     2226    my @otherTests;
     2227    foreach my $test (@testsToRun) {
     2228        if ($test =~ /^http\//) {
     2229            push(@httpTests, $test);
     2230        } elsif ($test =~ /^websocket\//) {
     2231            push(@websocketTests, $test);
     2232        } else {
     2233            push(@otherTests, $test);
     2234        }
     2235    }
     2236    @testsToRun = (@otherTests, @httpTests, @websocketTests);
     2237
    22242238    # Reverse the tests
    22252239    @testsToRun = reverse @testsToRun if $reverseTests;
Note: See TracChangeset for help on using the changeset viewer.