summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-17 14:43:23 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-17 14:43:23 +0000
commite2ea7c3e55bbc6b80e9ed17cf760594348f25ec2 (patch)
tree705ece08f4c11b0331ecc555cc7db46d105bd70c /testdata
parent107eef07bc3e949c11c280d8e8c34a2dde295b54 (diff)
downloadpcre-e2ea7c3e55bbc6b80e9ed17cf760594348f25ec2.tar.gz
Fix MARK bug for assertions.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@888 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput26
-rw-r--r--testdata/testoutput212
2 files changed, 18 insertions, 0 deletions
diff --git a/testdata/testinput2 b/testdata/testinput2
index b8483e2..bdae889 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -3595,4 +3595,10 @@ replaced by single letters. --/
/(?=(*:x))(?>(*:y)q|)/K+
abc
+/(?=a(*:x))(?!a(*:y)c)/K+
+ ab
+
+/(?=a(*:x))(?=a(*:y)c|)/K+
+ ab
+
/-- End of testinput2 --/
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index 841b55f..6d94c09 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -11999,4 +11999,16 @@ MK: x
0+ abc
MK: x
+/(?=a(*:x))(?!a(*:y)c)/K+
+ ab
+ 0:
+ 0+ ab
+MK: x
+
+/(?=a(*:x))(?=a(*:y)c|)/K+
+ ab
+ 0:
+ 0+ ab
+MK: x
+
/-- End of testinput2 --/