summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2020-09-15 14:36:23 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2020-09-15 14:36:23 +0000
commitc23be766617cbfcb14e56dc5f1f01289077bd125 (patch)
tree4eb913409fb7da41356a1edaf016e9ea46812114 /testdata
parent075c6e67db068685a87233580579fccecfb7f27a (diff)
downloadpcre2-c23be766617cbfcb14e56dc5f1f01289077bd125.tar.gz
Fix Bugzilla #2642: no match bug in 8-bit mode for caseless invalid utf
matching. git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1272 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput103
-rw-r--r--testdata/testoutput104
2 files changed, 7 insertions, 0 deletions
diff --git a/testdata/testinput10 b/testdata/testinput10
index b3c3197..efd3298 100644
--- a/testdata/testinput10
+++ b/testdata/testinput10
@@ -610,4 +610,7 @@
/X(\x{e1})Y/replace=>\U$1<,substitute_extended
X\x{e1}Y
+/A/utf,match_invalid_utf,caseless
+ \xe5A
+
# End of testinput10
diff --git a/testdata/testoutput10 b/testdata/testoutput10
index 59af535..2a3803f 100644
--- a/testdata/testoutput10
+++ b/testdata/testoutput10
@@ -1871,4 +1871,8 @@ Subject length lower bound = 1
X\x{e1}Y
1: >\xe1<
+/A/utf,match_invalid_utf,caseless
+ \xe5A
+ 0: A
+
# End of testinput10