diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-05 02:44:39 +0200 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2017-03-05 02:44:39 +0200 |
commit | 1cac281ebefbae25bc7f19443a531952101ee2f6 (patch) | |
tree | 73090ae4843495a40ea4f9e623e01cc88e026360 /pcre/testdata/testoutput16 | |
parent | 895b2539639f013049f11a7d547107a93410d58d (diff) | |
parent | dfd7749120e592299fddf2710bc336ee1000ae07 (diff) | |
download | mariadb-git-1cac281ebefbae25bc7f19443a531952101ee2f6.tar.gz |
Merge branch 'merge-pcre' into 10.0
Diffstat (limited to 'pcre/testdata/testoutput16')
-rw-r--r-- | pcre/testdata/testoutput16 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/pcre/testdata/testoutput16 b/pcre/testdata/testoutput16 index fd184cdbeee..e6ba26acfd4 100644 --- a/pcre/testdata/testoutput16 +++ b/pcre/testdata/testoutput16 @@ -138,4 +138,56 @@ Starting chars: S s \xc5 SSss\x{17f} 0: SSss\x{17f} +/[\W\p{Any}]/BZ +------------------------------------------------------------------ + Bra + [\x00-/:-@[-^`{-\xff\p{Any}] + Ket + End +------------------------------------------------------------------ + abc + 0: a + 123 + 0: 1 + +/[\W\pL]/BZ +------------------------------------------------------------------ + Bra + [\x00-/:-@[-^`{-\xff\p{L}] + Ket + End +------------------------------------------------------------------ + abc + 0: a + ** Failers + 0: * + 123 +No match + +/[\D]/8 + \x{1d7cf} + 0: \x{1d7cf} + +/[\D\P{Nd}]/8 + \x{1d7cf} + 0: \x{1d7cf} + +/[^\D]/8 + a9b + 0: 9 + ** Failers +No match + \x{1d7cf} +No match + +/[^\D\P{Nd}]/8 + a9b + 0: 9 + \x{1d7cf} + 0: \x{1d7cf} + ** Failers +No match + \x{10000} +No match + /-- End of testinput16 --/ |