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

Changeset 243217 in webkit


Ignore:
Timestamp:
Mar 20, 2019, 11:10:32 AM (7 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-build] Improve failure summary string for ApplyPatch step
https://bugs.webkit.org/show_bug.cgi?id=195995

Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/ews-build/steps.py:

(ApplyPatch.getResultSummary): Override getResultSummary.

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r243177 r243217  
    136136        d.addCallback(lambda res: shell.ShellCommand.start(self))
    137137
     138    def getResultSummary(self):
     139        if self.results != SUCCESS:
     140            return {u'step': u'Patch does not apply'}
     141        return super(ApplyPatch, self).getResultSummary()
     142
    138143
    139144class CheckPatchRelevance(buildstep.BuildStep):
  • trunk/Tools/ChangeLog

    r243198 r243217  
     12019-03-20  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Improve failure summary string for ApplyPatch step
     4        https://bugs.webkit.org/show_bug.cgi?id=195995
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        (ApplyPatch.getResultSummary): Override getResultSummary.
     10
    1112019-03-20  Joanmarie Diggs  <jdiggs@igalia.com>
    212
Note: See TracChangeset for help on using the changeset viewer.