Changeset 87774 in webkit


Ignore:
Timestamp:
May 31, 2011 10:54:40 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-31 Hao Zheng <zhenghao@chromium.org>

Reviewed by Dirk Pranke.

Fix exception in verbose printing mode.
https://bugs.webkit.org/show_bug.cgi?id=61723

  • Scripts/webkitpy/layout_tests/layout_package/printing.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r87771 r87774  
     12011-05-31  Hao Zheng  <zhenghao@chromium.org>
     2
     3        Reviewed by Dirk Pranke.
     4
     5        Fix exception in verbose printing mode.
     6        https://bugs.webkit.org/show_bug.cgi?id=61723
     7
     8        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
     9
    1102011-05-31  Yong Li  <yoli@rim.com>
    211
  • trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/printing.py

    r87596 r87774  
    349349        if retrying:
    350350            action = "Retrying"
    351         self._meter.update("%s (%d%%): %d ran as expected, %d didn't,"
     351        self._update("%s (%d%%): %d ran as expected, %d didn't,"
    352352            " %d left" % (action, percent_complete, result_summary.expected,
    353353             result_summary.unexpected, result_summary.remaining))
    354354
    355355        if result_summary.remaining == 0:
    356             self._meter.update('')
     356            self._update('')
    357357
    358358    def print_unexpected_results(self, unexpected_results):
Note: See TracChangeset for help on using the changeset viewer.