summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2021-02-18 09:46:08 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2021-02-18 09:46:08 +0000
commit1ef05f50d623582e8493ab49cfe0c243eed175c9 (patch)
tree74eac9477ae11cf28b6a36ce18379e0572c38513 /testdata
parente76709c3107e505dbaa3e090548e405d254419a7 (diff)
downloadpcre2-1ef05f50d623582e8493ab49cfe0c243eed175c9.tar.gz
Fix \K within recursion bug in interpreter.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@1301 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput13
-rw-r--r--testdata/testoutput14
2 files changed, 7 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index bb4ddb7..4cf1126 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -6429,4 +6429,7 @@ ef) x/x,mark
/a{65536/
>a{65536<
+/a\K.(?0)*/
+ abac
+
# End of testinput1
diff --git a/testdata/testoutput1 b/testdata/testoutput1
index 05b310b..8d4c108 100644
--- a/testdata/testoutput1
+++ b/testdata/testoutput1
@@ -10188,4 +10188,8 @@ No match
>a{65536<
0: a{65536
+/a\K.(?0)*/
+ abac
+ 0: c
+
# End of testinput1