Changeset 247646 in webkit


Ignore:
Timestamp:
Jul 19, 2019 8:54:29 AM (5 years ago)
Author:
aakash_jain@apple.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/steps.py

    r247569 r247646  
    10281028        self.descriptionDone = 'Passed layout tests'
    10291029        pluralSuffix = 's' if len(clean_tree_failures) > 1 else ''
    1030         message = 'Found {} pre-existing test failure{}'.format(len(clean_tree_failures), pluralSuffix)
     1030        clean_tree_failures_string = ', '.join([failure_name for failure_name in clean_tree_failures])
     1031        message = 'Found {} pre-existing test failure{}: {}'.format(len(clean_tree_failures), pluralSuffix, clean_tree_failures_string)
    10311032        self.build.buildFinished([message], SUCCESS)
    10321033        return defer.succeed(None)
  • trunk/Tools/ChangeLog

    r247642 r247646  
     12019-07-19  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Display pre-existing Layout test failure names in the build summary
     4        https://bugs.webkit.org/show_bug.cgi?id=199941
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        (AnalyzeLayoutTestsResults.report_pre_existing_failures):
     10
    1112019-07-19  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    212
Note: See TracChangeset for help on using the changeset viewer.