Changeset 29473 in webkit


Ignore:
Timestamp:
Jan 14, 2008 10:38:02 AM (16 years ago)
Author:
zecke@webkit.org
Message:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r29471 r29473  
     12008-01-14  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
     2
     3        Reviewed by Darin.
     4
     5        * Allow to run the tests in reverse order to spot test cases where the result depends on the order
     6        the tests were ran.
     7        * This is from http://bugs.webkit.org/show_bug.cgi?id=16869
     8
     9        * Scripts/run-webkit-tests:
     10
    1112008-01-14  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
    212
  • trunk/WebKitTools/Scripts/run-webkit-tests

    r29471 r29473  
    122122my $stripEditingCallbacks = isCygwin();
    123123my $root;
     124my $reverseTests = 0;
    124125my $randomizeTests = 0;
    125126
     
    173174  -o|--results-directory          Output results directory (default: $testResultsDirectory)
    174175  --random                        Run the tests in a random order
     176  --reverse                       Run the tests in reverse alphabetical order
    175177  --root                          Path to root tools build
    176178  -1|--singly                     Isolate each test case run (implies --verbose)
     
    218220    'strip-editing-callbacks!' => \$stripEditingCallbacks,
    219221    'random' => \$randomizeTests,
     222    'reverse' => \$reverseTests,
    220223    'root=s' => \$root,
    221224    'add-platform-exceptions' => \$addPlatformExceptions,
     
    454457
    455458my %expectedResultDirectory;
     459
     460# Reverse the tests
     461@tests = reverse @tests if $reverseTests;
    456462
    457463# Shuffle the array
Note: See TracChangeset for help on using the changeset viewer.