Changeset 181116 in webkit


Ignore:
Timestamp:
Mar 5, 2015, 4:40:15 PM (10 years ago)
Author:
ddkilzer@apple.com
Message:

Dashboard has trouble parsing iOS test output
<http://webkit.org/b/142364>

Reviewed by Alex Christensen.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTestResults.js:

(BuildbotTestResults.prototype._parseResults.resultSummarizer):
Add fallback path to build a regex using 'matchString' so that
it matches anywhere in the line. In practice, 'matchString' is
a prefix for the label following the number.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTestResults.js

    r180959 r181116  
    7474        {
    7575            var match = /^(\d+)\s/.exec(outputLine);
     76            if (!match) {
     77                var regex = new RegExp("(\\d+)\\s" + matchString);
     78                match = regex.exec(outputLine);
     79            }
    7680            if (!match)
    7781                return sum;
  • trunk/Tools/ChangeLog

    r181113 r181116  
     12015-03-05  David Kilzer  <ddkilzer@apple.com>
     2
     3        Dashboard has trouble parsing iOS test output
     4        <http://webkit.org/b/142364>
     5
     6        Reviewed by Alex Christensen.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotTestResults.js:
     9        (BuildbotTestResults.prototype._parseResults.resultSummarizer):
     10        Add fallback path to build a regex using 'matchString' so that
     11        it matches anywhere in the line.  In practice, 'matchString' is
     12        a prefix for the label following the number.
     13
    1142015-03-05  Alex Christensen  <achristensen@webkit.org>
    215
Note: See TracChangeset for help on using the changeset viewer.