summaryrefslogtreecommitdiff
path: root/testdata/testinput1
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-11-11 18:33:23 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-11-11 18:33:23 +0000
commitbedf8543fca9244a642da63b60e662d754216085 (patch)
tree9fbb7285f6141b41e33d9c6750421dba126f1029 /testdata/testinput1
parentb79cc767bf7081781e78955af3c986c2119bcdd3 (diff)
downloadpcre-bedf8543fca9244a642da63b60e662d754216085.tar.gz
Fix \K bug in possessively repeated groups.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1397 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput1')
-rw-r--r--testdata/testinput115
1 files changed, 15 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index b1c3752..e0211a3 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -5651,4 +5651,19 @@ AbcdCBefgBhiBqz
/ ^ ( a + ) + + \w $ /x
aaaab
+/(?:a\Kb)*+/+
+ ababc
+
+/(?>a\Kb)*/+
+ ababc
+
+/(?:a\Kb)*/+
+ ababc
+
+/(a\Kb)*+/+
+ ababc
+
+/(a\Kb)*/+
+ ababc
+
/-- End of testinput1 --/