summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-04-25 11:59:19 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-04-25 11:59:19 +0000
commit60f995fc2f823183783633d5eb8af2eceb0bb663 (patch)
treeca3dad9fed560c9192637c42d2e9ecb15a9ca285 /testdata
parent0bd9147ce89e5e120b6a1a57832b3836e35f4247 (diff)
downloadpcre-60f995fc2f823183783633d5eb8af2eceb0bb663.tar.gz
Fixed an issue with nested table jumps.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1475 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 7b36360..16f29a6 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -5666,4 +5666,7 @@ AbcdCBefgBhiBqz
/(a\Kb)*/+
ababc
+/(?:x|(?:(xx|yy)+|x|x|x|x|x)|a|a|a)bc/
+ acb
+
/-- End of testinput1 --/
diff --git a/testdata/testoutput1 b/testdata/testoutput1
index 4dafc04..3825b5f 100644
--- a/testdata/testoutput1
+++ b/testdata/testoutput1
@@ -9313,4 +9313,8 @@ No match
0+ c
1: ab
+/(?:x|(?:(xx|yy)+|x|x|x|x|x)|a|a|a)bc/
+ acb
+No match
+
/-- End of testinput1 --/