summaryrefslogtreecommitdiff
path: root/testdata/testoutput1
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-07-18 10:14:09 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-07-18 10:14:09 +0000
commit99573bcec4d2f0b70bcdbf1ce7811d290e306947 (patch)
tree78173dca59fda6015da557d84fc60dbf9cc1c41c /testdata/testoutput1
parentb5036383f5ccb2a6c10071e767ad0afddd4c8ef3 (diff)
downloadpcre-99573bcec4d2f0b70bcdbf1ce7811d290e306947.tar.gz
Remove atomic from single repeats; convert possessive atomic to possessive
non-atomic (because they are the same). git-svn-id: svn://vcs.exim.org/pcre/code/trunk@621 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testoutput1')
-rw-r--r--testdata/testoutput112
1 files changed, 12 insertions, 0 deletions
diff --git a/testdata/testoutput1 b/testdata/testoutput1
index a6aca71..1f39d4d 100644
--- a/testdata/testoutput1
+++ b/testdata/testoutput1
@@ -6843,4 +6843,16 @@ No match
1: a
2: b
+/^(?:a|ab)++c/
+ aaaabc
+No match
+
+/^(?>a|ab)++c/
+ aaaabc
+No match
+
+/^(?:a|ab)+c/
+ aaaabc
+ 0: aaaabc
+
/-- End of testinput1 --/