X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/38fbf2fd31f5cd99b500914d6037b1d06b608645..0f5d89e82340278ed3d7d50029f37cab2c41a57e:/icuSources/test/testdata/regextst.txt?ds=sidebyside diff --git a/icuSources/test/testdata/regextst.txt b/icuSources/test/testdata/regextst.txt index 6873f483..977a7b34 100644 --- a/icuSources/test/testdata/regextst.txt +++ b/icuSources/test/testdata/regextst.txt @@ -252,7 +252,7 @@ # Unicode word boundary mode # "(?w).*?\b" v "<0>hello, world" -"(?w).*?(\b.+?\b).*" v "<0><1> 123.45 " +"(?w).*?(\b.+?\b).*" v "<0><1> 123.45 " "(?w).*?(\b\d.*?\b).*" v "<0> <1>123.45 " ".*?(\b.+?\b).*" "<0> <1>123.45 " "(?w:.*?(\b\d.*?\b).*)" v "<0> <1>123.45 " @@ -1355,6 +1355,13 @@ "[^\u0000-\U0010ffff]bc?" "bc no match" "[^\u0000-\U0010ffff]?bc?" "<0>bc has a match" +# Bug #12160 Hit End behavior after find fails to find. +# To match Java, should be true if find fails to find. +# +"abc" Z "<0>abc abc abc xyz" +"abc" Z2 "abc <0>abc abc xyz" +"abc" Z3 "abc abc <0>abc xyz" +"abc" z4 "abc abc abc xyz" # Random debugging, Temporary #