You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/06/30 05:05:30 UTC

[jira] Updated: (HARMONY-713) java.util.regex.Matcher.find() ignores the specified region when the pattern is "c"

     [ http://issues.apache.org/jira/browse/HARMONY-713?page=all ]

Richard Liang updated HARMONY-713:
----------------------------------

    Attachment: regex.src.diff

Hello,

Here is the patch of regression test. Thanks a lot.

Best regards,
Richard.

> java.util.regex.Matcher.find() ignores the specified region when the pattern is "c"
> -----------------------------------------------------------------------------------
>
>          Key: HARMONY-713
>          URL: http://issues.apache.org/jira/browse/HARMONY-713
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: regex.src.diff
>
> Hello Nik,
> java.util.regex.Matcher.find() ignores the specified region when the pattern is "c".
> The following test pass on RI, but fail on Harmony. I will attach the test for regression soon :-)
>     public void testFindRegionChanged2() {
>         Pattern pattern = Pattern.compile("c");
>         String inputStr = "aabb.c";
>         Matcher matcher = pattern.matcher(inputStr);
>         matcher.region(0, 3);
>         
>         assertFalse(matcher.find());
>     }
> Best regards,
> Richard.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira