Title: [244671] trunk/Tools
Revision
244671
Author
[email protected]
Date
2019-04-25 17:17:34 -0700 (Thu, 25 Apr 2019)

Log Message

webkitpy: Including skipped tests in the final count
https://bugs.webkit.org/show_bug.cgi?id=197298
<rdar://problem/49705424>

Reviewed by Lucas Forschler.

* Scripts/webkitpy/layout_tests/views/buildbot_results.py:
(BuildBotPrinter.print_run_results): The total number of tests run should exclude delibrately skipped tests.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (244670 => 244671)


--- trunk/Tools/ChangeLog	2019-04-26 00:17:23 UTC (rev 244670)
+++ trunk/Tools/ChangeLog	2019-04-26 00:17:34 UTC (rev 244671)
@@ -1,3 +1,14 @@
+2019-04-25  Jonathan Bedard  <[email protected]>
+
+        webkitpy: Including skipped tests in the final count
+        https://bugs.webkit.org/show_bug.cgi?id=197298
+        <rdar://problem/49705424>
+
+        Reviewed by Lucas Forschler.
+
+        * Scripts/webkitpy/layout_tests/views/buildbot_results.py:
+        (BuildBotPrinter.print_run_results): The total number of tests run should exclude delibrately skipped tests.
+
 2019-04-25  Timothy Hatcher  <[email protected]>
 
         Disable date and time inputs on iOSMac.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py (244670 => 244671)


--- trunk/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py	2019-04-26 00:17:23 UTC (rev 244670)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py	2019-04-26 00:17:34 UTC (rev 244671)
@@ -56,7 +56,7 @@
 
     def print_run_results(self, run_results):
         failed = run_results.total_failures
-        total = run_results.total
+        total = run_results.total - run_results.expected_skips
         passed = total - failed - run_results.remaining
         percent_passed = 0.0
         if total > 0:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to