Title: [124234] trunk/Tools
Revision
124234
Author
dpra...@chromium.org
Date
2012-07-31 12:05:27 -0700 (Tue, 31 Jul 2012)

Log Message

REGRESSION(124116): Number of skipped tests isn't printed anymore
https://bugs.webkit.org/show_bug.cgi?id=92736

Reviewed by Tony Chang.

Add the skipped number back in; it was useful ... also clean up
the formatting a little bit.

* Scripts/webkitpy/layout_tests/views/printing.py:
(Printer.print_found):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (124233 => 124234)


--- trunk/Tools/ChangeLog	2012-07-31 19:04:04 UTC (rev 124233)
+++ trunk/Tools/ChangeLog	2012-07-31 19:05:27 UTC (rev 124234)
@@ -1,3 +1,16 @@
+2012-07-31  Dirk Pranke  <dpra...@chromium.org>
+
+        REGRESSION(124116): Number of skipped tests isn't printed anymore
+        https://bugs.webkit.org/show_bug.cgi?id=92736
+
+        Reviewed by Tony Chang.
+
+        Add the skipped number back in; it was useful ... also clean up
+        the formatting a little bit.
+
+        * Scripts/webkitpy/layout_tests/views/printing.py:
+        (Printer.print_found):
+
 2012-07-31  Hans Wennborg  <h...@chromium.org>
 
         Speech _javascript_ API: Throw exception for start() when already started

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/views/printing.py (124233 => 124234)


--- trunk/Tools/Scripts/webkitpy/layout_tests/views/printing.py	2012-07-31 19:04:04 UTC (rev 124233)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/views/printing.py	2012-07-31 19:05:27 UTC (rev 124234)
@@ -223,7 +223,8 @@
     def print_found(self, num_all_test_files, num_to_run, repeat_each, iterations):
         found_str = 'Found %s; running %d' % (grammar.pluralize('test', num_all_test_files), num_to_run)
         if repeat_each * iterations > 1:
-            found_str += ', %d times each (--repeat-each=%d, --iterations=%d)' % (repeat_each * iterations, repeat_each, iterations)
+            found_str += ' (%d times each: --repeat-each=%d --iterations=%d)' % (repeat_each * iterations, repeat_each, iterations)
+        found_str += ', skipping %d' % (num_all_test_files - num_to_run)
         self._print_expected(found_str + '.')
 
     def print_expected(self, result_summary, tests_with_result_type_callback):
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to