[Webkit-unassigned] [Bug 93789] REGRESSION(r125153): It broke the 'Unexpected no expected results' case

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 13 00:17:48 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=93789


Csaba Osztrogonac <ossy at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ossy at webkit.org




--- Comment #2 from Csaba Osztrogonac <ossy at webkit.org>  2012-08-13 00:18:17 PST ---
(In reply to comment #1)
> This regex is the culprit
> 
> re.compile(r'(no expected results found|missing results)\s*:\s+\((\d+)\)')
> 
> Because of the new parentheses the text is the first matching group. The text should be a non-capturing group, like this:
> 
> re.compile(r'(?:no expected results found|missing results)\s*:\s+\((\d+)\)')

Could you upload a patch for it? ;-)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list