Changeset 84076 in webkit


Ignore:
Timestamp:
Apr 15, 2011 8:59:35 PM (13 years ago)
Author:
dpranke@chromium.org
Message:

2011-04-15 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

old-run-webkit-tests: save the list of tests actually run to a file
https://bugs.webkit.org/show_bug.cgi?id=58692

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

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r84075 r84076  
     12011-04-15  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Ojan Vafai.
     4
     5        old-run-webkit-tests: save the list of tests actually run to a file
     6        https://bugs.webkit.org/show_bug.cgi?id=58692
     7
     8        * Scripts/old-run-webkit-tests:
     9
    1102011-04-15  Dirk Pranke  <dpranke@chromium.org>
    211
  • trunk/Tools/Scripts/old-run-webkit-tests

    r83912 r84076  
    693693}
    694694
     695my $absTestResultsDirectory = resolveAndMakeTestResultsDirectory();
     696open my $tests_run_fh, '>', "$absTestResultsDirectory/tests_run.txt" or die $!;
     697
    695698for my $test (@tests) {
    696699    my $newDumpTool = not $isDumpToolOpen;
     
    742745
    743746    my $startTime = time if $report10Slowest;
     747
     748    print $tests_run_fh "$testDirectory/$test\n";
    744749
    745750    # Try to read expected hash file for pixel tests
     
    10911096}
    10921097
     1098close($tests_run_fh);
     1099
    10931100my $totalTestingTime = time - $overallStartTime;
    10941101my $waitTime = getWaitTime();
Note: See TracChangeset for help on using the changeset viewer.