⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244671 in webkit


Ignore:
Timestamp:
Apr 25, 2019, 5:17:34 PM (7 years ago)
Author:
Jonathan Bedard
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r244668 r244671  
     12019-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
    1122019-04-25  Timothy Hatcher  <timothy@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py

    r175204 r244671  
    5757    def print_run_results(self, run_results):
    5858        failed = run_results.total_failures
    59         total = run_results.total
     59        total = run_results.total - run_results.expected_skips
    6060        passed = total - failed - run_results.remaining
    6161        percent_passed = 0.0
Note: See TracChangeset for help on using the changeset viewer.