Changeset 125153 in webkit


Ignore:
Timestamp:
Aug 8, 2012 10:50:24 PM (12 years ago)
Author:
Csaba Osztrogonác
Message:

update bot parsing of new-run-webkit-tests' output
https://bugs.webkit.org/show_bug.cgi?id=93537

Patch by Dirk Pranke <dpranke@chromium.org> on 2012-08-08
Reviewed by Ryosuke Niwa.

This change updates the way we parse the output from
new-run-webkit-tests on the bots so that we can show a summary
of the results properly after I re-land the changes that were
reverted in r124994 and r124870.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(RunWebKitTests._parseNewRunWebKitTestsOutput):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r125066 r125153  
    350350        incorrectLayoutLines = []
    351351        expressions = [
    352             ('flakes', re.compile(r'Unexpected flakiness.+:?\s*\((\d+)\)')),
     352            ('flakes', re.compile(r'[Uu]nexpected flakiness.+:?\s*\((\d+)\)')),
    353353            ('new passes', re.compile(r'Expected to .+, but passed:\s+\((\d+)\)')),
    354             ('missing results', re.compile(r'no expected results found\s*:\s+\((\d+)\)')),
    355             ('failures', re.compile(r'Regressions: Unexpected.+:?\s*\((\d+)\)')),
     354            ('missing results', re.compile(r'(no expected results found|missing results)\s*:\s+\((\d+)\)')),
     355            ('failures', re.compile(r'Regressions: [Uu]nexpected.+:?\s*\((\d+)\)')),
    356356        ]
    357357        testFailures = {}
  • trunk/Tools/ChangeLog

    r125142 r125153  
     12012-08-08  Dirk Pranke  <dpranke@chromium.org>
     2
     3        update bot parsing of new-run-webkit-tests' output
     4        https://bugs.webkit.org/show_bug.cgi?id=93537
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        This change updates the way we parse the output from
     9        new-run-webkit-tests on the bots so that we can show a summary
     10        of the results properly after I re-land the changes that were
     11        reverted in r124994 and r124870.
     12
     13        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     14        (RunWebKitTests._parseNewRunWebKitTestsOutput):
     15
    1162012-08-08  Shane Stephens  <shanestephens@google.com>
    217
Note: See TracChangeset for help on using the changeset viewer.