summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-11-16 17:30:07 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2019-11-16 17:30:07 +0000
commit3c7295bb56a7944fe5358cb2eab2ad68d35a3aa1 (patch)
tree38cf6affc36a46a45468f4dc2555e82f7d9d9d64 /testdata
parentcd3016b9089095098567bf637fe9e458b22fa711 (diff)
downloadpcre2-3c7295bb56a7944fe5358cb2eab2ad68d35a3aa1.tar.gz
Fix sometimes failing caseless non-ASCII matching in assertion.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1185 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput48
-rw-r--r--testdata/testoutput412
2 files changed, 20 insertions, 0 deletions
diff --git a/testdata/testinput4 b/testdata/testinput4
index f3d498c..0871835 100644
--- a/testdata/testinput4
+++ b/testdata/testinput4
@@ -2483,4 +2483,12 @@
/\X*/
\xF3aaa\xE4\xEA\xEB\xFEa
+/Я/i,utf
+ \x{42f}
+ \x{44f}
+
+/(?=Я)/i,utf
+ \x{42f}
+ \x{44f}
+
# End of testinput4
diff --git a/testdata/testoutput4 b/testdata/testoutput4
index 53926ed..2c8037b 100644
--- a/testdata/testoutput4
+++ b/testdata/testoutput4
@@ -4016,4 +4016,16 @@ No match
\xF3aaa\xE4\xEA\xEB\xFEa
0: \xf3aaa\xe4\xea\xeb\xfea
+/Я/i,utf
+ \x{42f}
+ 0: \x{42f}
+ \x{44f}
+ 0: \x{44f}
+
+/(?=Я)/i,utf
+ \x{42f}
+ 0:
+ \x{44f}
+ 0:
+
# End of testinput4