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

Changeset 267447 in webkit


Ignore:
Timestamp:
Sep 22, 2020, 5:04:52 PM (6 years ago)
Author:
aakash_jain@apple.com
Message:

Limit number of emails to send for flaky and pre-existing JSC test failures
https://bugs.webkit.org/show_bug.cgi?id=216857

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-build/steps.py:

(AnalyzeJSCTestsResults.start):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r267165 r267447  
    17311731        flaky_stress_failures = first_run_stress_failures.union(second_run_stress_failures) - first_run_stress_failures.intersection(second_run_stress_failures)
    17321732        flaky_binary_failures = first_run_binary_failures.union(second_run_binary_failures) - first_run_binary_failures.intersection(second_run_binary_failures)
    1733         flaky_failures = list(flaky_binary_failures) + list(flaky_stress_failures)
     1733        flaky_failures = (list(flaky_binary_failures) + list(flaky_stress_failures))[:self.NUM_FAILURES_TO_DISPLAY]
    17341734        flaky_failures_string = ', '.join(flaky_failures)
    17351735
     
    17701770            if clean_tree_failures:
    17711771                message = 'Found {} pre-existing JSC test failure{}: {}'.format(len(clean_tree_failures), pluralSuffix, clean_tree_failures_string)
    1772                 for clean_tree_failure in clean_tree_failures:
     1772                for clean_tree_failure in clean_tree_failures[:self.NUM_FAILURES_TO_DISPLAY]:
    17731773                    self.send_email_for_pre_existing_failure(clean_tree_failure)
    17741774            if len(clean_tree_failures) > self.NUM_FAILURES_TO_DISPLAY:
  • trunk/Tools/ChangeLog

    r267439 r267447  
     12020-09-22  Aakash Jain  <aakash_jain@apple.com>
     2
     3        Limit number of emails to send for flaky and pre-existing JSC test failures
     4        https://bugs.webkit.org/show_bug.cgi?id=216857
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        (AnalyzeJSCTestsResults.start):
     10
    1112020-09-22  Sihui Liu  <sihui_liu@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.