summaryrefslogtreecommitdiff
path: root/testdata/testinput8
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-10-17 19:55:02 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-10-17 19:55:02 +0000
commit1da028459167ef408e659b9fe91eb70f3b79e395 (patch)
tree2fbe158f25c2f1fc68cb1532b6dd7cee33a7ec94 /testdata/testinput8
parentf66c8de115b662c90e2a0af9a4357f69df2b3106 (diff)
downloadpcre-1da028459167ef408e659b9fe91eb70f3b79e395.tar.gz
Fix PCRE_PARTIAL_HARD for patterns that end optionally, e.g. abc*
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@462 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput8')
-rw-r--r--testdata/testinput818
1 files changed, 18 insertions, 0 deletions
diff --git a/testdata/testinput8 b/testdata/testinput8
index e879e81..1c6f684 100644
--- a/testdata/testinput8
+++ b/testdata/testinput8
@@ -667,4 +667,22 @@
/X/8f<any>
A\x{1ec5}ABCXYZ
+/abcd*/8
+ xxxxabcd\P
+ xxxxabcd\P\P
+
+/abcd*/i8
+ xxxxabcd\P
+ xxxxabcd\P\P
+ XXXXABCD\P
+ XXXXABCD\P\P
+
+/abc\d*/8
+ xxxxabc1\P
+ xxxxabc1\P\P
+
+/abc[de]*/8
+ xxxxabcde\P
+ xxxxabcde\P\P
+
/-- End of testinput8 --/