Title: [247646] trunk/Tools
Revision
247646
Author
[email protected]
Date
2019-07-19 08:54:29 -0700 (Fri, 19 Jul 2019)

Log Message

[ews-build] Display pre-existing Layout test failure names in the build summary
https://bugs.webkit.org/show_bug.cgi?id=199941

Reviewed by Jonathan Bedard.

* BuildSlaveSupport/ews-build/steps.py:
(AnalyzeLayoutTestsResults.report_pre_existing_failures):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/ews-build/steps.py (247645 => 247646)


--- trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-07-19 15:51:39 UTC (rev 247645)
+++ trunk/Tools/BuildSlaveSupport/ews-build/steps.py	2019-07-19 15:54:29 UTC (rev 247646)
@@ -1027,7 +1027,8 @@
         self.build.results = SUCCESS
         self.descriptionDone = 'Passed layout tests'
         pluralSuffix = 's' if len(clean_tree_failures) > 1 else ''
-        message = 'Found {} pre-existing test failure{}'.format(len(clean_tree_failures), pluralSuffix)
+        clean_tree_failures_string = ', '.join([failure_name for failure_name in clean_tree_failures])
+        message = 'Found {} pre-existing test failure{}: {}'.format(len(clean_tree_failures), pluralSuffix, clean_tree_failures_string)
         self.build.buildFinished([message], SUCCESS)
         return defer.succeed(None)
 

Modified: trunk/Tools/ChangeLog (247645 => 247646)


--- trunk/Tools/ChangeLog	2019-07-19 15:51:39 UTC (rev 247645)
+++ trunk/Tools/ChangeLog	2019-07-19 15:54:29 UTC (rev 247646)
@@ -1,3 +1,13 @@
+2019-07-19  Aakash Jain  <[email protected]>
+
+        [ews-build] Display pre-existing Layout test failure names in the build summary
+        https://bugs.webkit.org/show_bug.cgi?id=199941
+
+        Reviewed by Jonathan Bedard.
+
+        * BuildSlaveSupport/ews-build/steps.py:
+        (AnalyzeLayoutTestsResults.report_pre_existing_failures):
+
 2019-07-19  Carlos Alberto Lopez Perez  <[email protected]>
 
         [GTK][WPE] run-webkit-tests should run with a temporal homedir
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to