WebKit Bugzilla
Attachment 368280 Details for
Bug 197298
: webkitpy: Including skipped tests in the final count
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197298-20190425155502.patch (text/plain), 1.34 KB, created by
Jonathan Bedard
on 2019-04-25 15:55:03 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jonathan Bedard
Created:
2019-04-25 15:55:03 PDT
Size:
1.34 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 244667) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2019-04-25 Jonathan Bedard <jbedard@apple.com> >+ >+ webkitpy: Including skipped tests in the final count >+ https://bugs.webkit.org/show_bug.cgi?id=197298 >+ <rdar://problem/49705424> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * 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 <timothy@apple.com> > > Disable date and time inputs on iOSMac. >Index: Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py >=================================================================== >--- Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py (revision 244663) >+++ Tools/Scripts/webkitpy/layout_tests/views/buildbot_results.py (working copy) >@@ -56,7 +56,7 @@ class BuildBotPrinter(object): > > 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:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197298
: 368280