summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-02-20 17:45:21 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2017-02-20 17:45:21 +0000
commit63f1aabcabdc7ace28c649657fe2a4f880a87c5a (patch)
tree56ec118c6068fd3e2145ce8d98c0a10b0482b892 /testdata
parentbe08075b6ecdd32b061655b567601ea30dd3c2be (diff)
downloadpcre-63f1aabcabdc7ace28c649657fe2a4f880a87c5a.tar.gz
Fix recognition of (?# style comment between quantifier and '+' or '?'.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1682 2f5784b3-3f2a-0410-8824-cb99058d5e15
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 93abab3..5c23f41 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -5739,4 +5739,7 @@ AbcdCBefgBhiBqz
/(?=.*X)X$/
\ X
+/X+(?#comment)?/
+ >XXX<
+
/-- End of testinput1 --/
diff --git a/testdata/testoutput1 b/testdata/testoutput1
index a2b3cff..eff8ecc 100644
--- a/testdata/testoutput1
+++ b/testdata/testoutput1
@@ -9442,4 +9442,8 @@ No match
\ X
0: X
+/X+(?#comment)?/
+ >XXX<
+ 0: X
+
/-- End of testinput1 --/