Title: [87774] trunk/Tools
Revision
87774
Author
[email protected]
Date
2011-05-31 22:54:40 -0700 (Tue, 31 May 2011)

Log Message

2011-05-31  Hao Zheng  <[email protected]>

        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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (87773 => 87774)


--- trunk/Tools/ChangeLog	2011-06-01 05:46:37 UTC (rev 87773)
+++ trunk/Tools/ChangeLog	2011-06-01 05:54:40 UTC (rev 87774)
@@ -1,3 +1,12 @@
+2011-05-31  Hao Zheng  <[email protected]>
+
+        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:
+
 2011-05-31  Yong Li  <[email protected]>
 
         Reviewed by Eric Seidel.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/printing.py (87773 => 87774)


--- trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/printing.py	2011-06-01 05:46:37 UTC (rev 87773)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/printing.py	2011-06-01 05:54:40 UTC (rev 87774)
@@ -348,12 +348,12 @@
         action = ""
         if retrying:
             action = ""
-        self._meter.update("%s (%d%%): %d ran as expected, %d didn't,"
+        self._update("%s (%d%%): %d ran as expected, %d didn't,"
             " %d left" % (action, percent_complete, result_summary.expected,
              result_summary.unexpected, result_summary.remaining))
 
         if result_summary.remaining == 0:
-            self._meter.update('')
+            self._update('')
 
     def print_unexpected_results(self, unexpected_results):
         """Prints a list of the unexpected results to the buildbot stream."""
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to