Changeset 181116 in webkit
- Timestamp:
- Mar 5, 2015, 4:40:15 PM (10 years ago)
- 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 74 74 { 75 75 var match = /^(\d+)\s/.exec(outputLine); 76 if (!match) { 77 var regex = new RegExp("(\\d+)\\s" + matchString); 78 match = regex.exec(outputLine); 79 } 76 80 if (!match) 77 81 return sum; -
trunk/Tools/ChangeLog
r181113 r181116 1 2015-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 1 14 2015-03-05 Alex Christensen <achristensen@webkit.org> 2 15
Note:
See TracChangeset
for help on using the changeset viewer.