Title: [125396] trunk/Tools
Revision
125396
Author
[email protected]
Date
2012-08-13 01:11:43 -0700 (Mon, 13 Aug 2012)

Log Message

REGRESSION(r125153): It broke the 'Unexpected no expected results' case
https://bugs.webkit.org/show_bug.cgi?id=93789

Patch by Peter Gal <[email protected]> on 2012-08-13
Reviewed by Csaba Osztrogonác.

Fix the regex, so the text won't be a capturing group.

* BuildSlaveSupport/build.webkit.org-config/master.cfg:
(RunWebKitTests._parseNewRunWebKitTestsOutput):

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg (125395 => 125396)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-08-13 07:52:13 UTC (rev 125395)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg	2012-08-13 08:11:43 UTC (rev 125396)
@@ -351,7 +351,7 @@
         expressions = [
             ('flakes', re.compile(r'[Uu]nexpected flakiness.+:?\s*\((\d+)\)')),
             ('new passes', re.compile(r'Expected to .+, but passed:\s+\((\d+)\)')),
-            ('missing results', re.compile(r'(no expected results found|missing results)\s*:\s+\((\d+)\)')),
+            ('missing results', re.compile(r'(?:no expected results found|missing results)\s*:\s+\((\d+)\)')),
             ('failures', re.compile(r'Regressions: [Uu]nexpected.+:?\s*\((\d+)\)')),
         ]
         testFailures = {}

Modified: trunk/Tools/ChangeLog (125395 => 125396)


--- trunk/Tools/ChangeLog	2012-08-13 07:52:13 UTC (rev 125395)
+++ trunk/Tools/ChangeLog	2012-08-13 08:11:43 UTC (rev 125396)
@@ -1,3 +1,15 @@
+2012-08-13  Peter Gal  <[email protected]>
+
+        REGRESSION(r125153): It broke the 'Unexpected no expected results' case
+        https://bugs.webkit.org/show_bug.cgi?id=93789
+
+        Reviewed by Csaba Osztrogonác.
+
+        Fix the regex, so the text won't be a capturing group.
+
+        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
+        (RunWebKitTests._parseNewRunWebKitTestsOutput):
+
 2012-08-12  MORITA Hajime  <[email protected]>
 
         Unreviewed, added a proxy address to contributors_who_are_not_committers.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to