summaryrefslogtreecommitdiff
path: root/testdata/testinput10
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-08-03 17:22:59 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-08-03 17:22:59 +0000
commit143f7f5c4dabd978117d415d2016c7595a7b9867 (patch)
tree2dbe52ad16df0b02269f69b439689c134821163a /testdata/testinput10
parent88bcaf167c392f97d50caafc1cbf1a226e8a7d85 (diff)
downloadpcre2-143f7f5c4dabd978117d415d2016c7595a7b9867.tar.gz
Fix bug that caused chars > 255 not to be matched by classes like [\W\pL] when
PCRE2_UCP was not set. git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@554 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testinput10')
-rw-r--r--testdata/testinput109
1 files changed, 9 insertions, 0 deletions
diff --git a/testdata/testinput10 b/testdata/testinput10
index 550e1c9..4b80778 100644
--- a/testdata/testinput10
+++ b/testdata/testinput10
@@ -445,4 +445,13 @@
/(?<=(a)(?-1))x/I,utf
a\x80zx\=offset=3
+/[\W\p{Any}]/B
+ abc
+ 123
+
+/[\W\pL]/B
+ abc
+\= Expect no match
+ 123
+
# End of testinput10