summaryrefslogtreecommitdiff
path: root/testdata/testinput11
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-11-15 17:35:10 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-11-15 17:35:10 +0000
commit88d27ef1f5a58734c2f576c64bddd92e912e519a (patch)
treec8f240d8a1a05146857647c9c0ac7a0d7f51e866 /testdata/testinput11
parentf021e15fd4f782eed4d409c68d8cbffc5200fb3b (diff)
downloadpcre-88d27ef1f5a58734c2f576c64bddd92e912e519a.tar.gz
Fixed several items that were being incorrectly rejected as "not fixed length"
in lookbehinds. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@747 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput11')
-rw-r--r--testdata/testinput1127
1 files changed, 27 insertions, 0 deletions
diff --git a/testdata/testinput11 b/testdata/testinput11
index 5849eb0..a9d1cfd 100644
--- a/testdata/testinput11
+++ b/testdata/testinput11
@@ -773,4 +773,31 @@ name)/K
/(?>(a)(*:m))/imsxSK
a
+/(?<=a(*ACCEPT)b)c/
+ xacd
+
+/(?<=(a(*ACCEPT)b))c/
+ xacd
+
+/(?<=(a(*COMMIT)b))c/
+ xabcd
+ ** Failers
+ xacd
+
+/(?<!a(*FAIL)b)c/
+ xcd
+ acd
+
+/(?<=a(*:N)b)c/K
+ xabcd
+
+/(?<=a(*PRUNE)b)c/
+ xabcd
+
+/(?<=a(*SKIP)b)c/
+ xabcd
+
+/(?<=a(*THEN)b)c/
+ xabcd
+
/-- End of testinput11 --/