Changeset 244671 in webkit
- Timestamp:
- Apr 25, 2019, 5:17:34 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/views/buildbot_results.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r244668 r244671 1 2019-04-25 Jonathan Bedard <jbedard@apple.com> 2 3 webkitpy: Including skipped tests in the final count 4 https://bugs.webkit.org/show_bug.cgi?id=197298 5 <rdar://problem/49705424> 6 7 Reviewed by Lucas Forschler. 8 9 * Scripts/webkitpy/layout_tests/views/buildbot_results.py: 10 (BuildBotPrinter.print_run_results): The total number of tests run should exclude delibrately skipped tests. 11 1 12 2019-04-25 Timothy Hatcher <timothy@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py
r175204 r244671 57 57 def print_run_results(self, run_results): 58 58 failed = run_results.total_failures 59 total = run_results.total 59 total = run_results.total - run_results.expected_skips 60 60 passed = total - failed - run_results.remaining 61 61 percent_passed = 0.0
Note:
See TracChangeset
for help on using the changeset viewer.