summaryrefslogtreecommitdiff
path: root/testdata/testinput1
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-06-16 17:53:17 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-06-16 17:53:17 +0000
commit491d376e802c13e0113d31f9882d37cfcb525402 (patch)
treea42482d8c9fcaefe320b9d1af85c67f0c829e1da /testdata/testinput1
parent8a790d680cbb1608c59c5fe3c406cb08c2e47b6a (diff)
downloadpcre-491d376e802c13e0113d31f9882d37cfcb525402.tar.gz
Fix capture problem with repeated, empty-string-matching groups.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@976 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput1')
-rw-r--r--testdata/testinput16
1 files changed, 6 insertions, 0 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index 40c3dce..1ec7689 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -5256,4 +5256,10 @@ name were given. ---/
/(?!a(*COMMIT)b)ac|cd/
ac
+/((?:a?)*)*c/
+ aac
+
+/((?>a?)*)*c/
+ aac
+
/-- End of testinput1 --/