Title: [255686] trunk/Tools
- Revision
- 255686
- Author
- [email protected]
- Date
- 2020-02-04 11:01:40 -0800 (Tue, 04 Feb 2020)
Log Message
[EWS] Do not remove TestWebKitAPI prefix from api test failures
https://bugs.webkit.org/show_bug.cgi?id=207210
Reviewed by Jonathan Bedard.
* BuildSlaveSupport/ews-build/steps.py:
(AnalyzeAPITestsResults.analyzeResults):
Modified Paths
Diff
Modified: trunk/Tools/BuildSlaveSupport/ews-build/steps.py (255685 => 255686)
--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py 2020-02-04 18:43:38 UTC (rev 255685)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py 2020-02-04 19:01:40 UTC (rev 255686)
@@ -1792,10 +1792,10 @@
failures_with_patch = first_run_failures.intersection(second_run_failures)
flaky_failures = first_run_failures.union(second_run_failures) - first_run_failures.intersection(second_run_failures)
- flaky_failures_string = ', '.join([failure_name.replace('TestWebKitAPI.', '') for failure_name in flaky_failures])
+ flaky_failures_string = ', '.join(flaky_failures)
new_failures = failures_with_patch - clean_tree_failures
new_failures_to_display = list(new_failures)[:self.NUM_API_FAILURES_TO_DISPLAY]
- new_failures_string = ', '.join([failure_name.replace('TestWebKitAPI.', '') for failure_name in new_failures_to_display])
+ new_failures_string = ', '.join(new_failures_to_display)
self._addToLog('stderr', '\nFailures in API Test first run: {}'.format(first_run_failures))
self._addToLog('stderr', '\nFailures in API Test second run: {}'.format(second_run_failures))
Modified: trunk/Tools/ChangeLog (255685 => 255686)
--- trunk/Tools/ChangeLog 2020-02-04 18:43:38 UTC (rev 255685)
+++ trunk/Tools/ChangeLog 2020-02-04 19:01:40 UTC (rev 255686)
@@ -1,5 +1,15 @@
2020-02-04 Aakash Jain <[email protected]>
+ [EWS] Do not remove TestWebKitAPI prefix from api test failures
+ https://bugs.webkit.org/show_bug.cgi?id=207210
+
+ Reviewed by Jonathan Bedard.
+
+ * BuildSlaveSupport/ews-build/steps.py:
+ (AnalyzeAPITestsResults.analyzeResults):
+
+2020-02-04 Aakash Jain <[email protected]>
+
[EWS] Do not remove webkitpy prefix from test failures
https://bugs.webkit.org/show_bug.cgi?id=207206
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes