Changeset 132690 in webkit


Ignore:
Timestamp:
Oct 26, 2012 1:41:25 PM (11 years ago)
Author:
roger_fong@apple.com
Message:

Get rid of (<X%) failing output for old-run-webkit-tests.
https://bugs.webkit.org/show_bug.cgi?id=100447

Reviewed by Jessie Berlin.

Not a particularly useful piece of information. It's pretty much never above 1%.
new-run-webkit-tests does not output this either.

  • Scripts/old-run-webkit-tests:

(printResults):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r132679 r132690  
     12012-10-25  Roger Fong  <roger_fong@apple.com>
     2
     3        Get rid of (<X%) failing output for old-run-webkit-tests.
     4        https://bugs.webkit.org/show_bug.cgi?id=100447
     5
     6        Reviewed by Jessie Berlin.
     7
     8        Not a particularly useful piece of information. It's pretty much never above 1%.
     9        new-run-webkit-tests does not output this either.
     10
     11        * Scripts/old-run-webkit-tests:
     12        (printResults):
     13
    1142012-10-26  Xianzhu Wang  <wangxianzhu@chromium.org>
    215
  • trunk/Tools/Scripts/old-run-webkit-tests

    r130956 r132690  
    27472747        if ($typeCount == 1) {
    27482748            $typeText =~ s/were/was/;
    2749             $message = sprintf "1 test case (%d%%) %s\n", 1 * 100 / $count, $typeText;
     2749            $message = sprintf "1 test case %s\n", $typeText;
    27502750        } else {
    2751             $message = sprintf "%d test cases (%d%%) %s\n", $typeCount, $typeCount * 100 / $count, $typeText;
     2751            $message = sprintf "%d test cases %s\n", $typeCount, $typeText;
    27522752        }
    27532753        $message =~ s-\(0%\)-(<1%)-;
Note: See TracChangeset for help on using the changeset viewer.