summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-01 11:23:52 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-01 11:23:52 +0000
commit2df52178cbe8c5aae0d573e1cc491a485086ad7e (patch)
tree6faf4f4863263c44a52780156ef91f95388aec50 /testdata
parentad2bfa681941133fabbeeb7cae9be4031e16bfc6 (diff)
downloadpcre-2df52178cbe8c5aae0d573e1cc491a485086ad7e.tar.gz
Fix partial match bug with /f.*/8s.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@649 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput212
-rw-r--r--testdata/testoutput216
2 files changed, 28 insertions, 0 deletions
diff --git a/testdata/testinput2 b/testdata/testinput2
index 3636e8c..0778c5f 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -3837,4 +3837,16 @@ with \Y. ---/
/.(*F)/
\P\Pabc
+/f.*/
+ \P\Pfor
+
+/f.*/s
+ \P\Pfor
+
+/f.*/8
+ \P\Pfor
+
+/f.*/8s
+ \P\Pfor
+
/-- End of testinput2 --/
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index c2622ce..220a627 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -12217,4 +12217,20 @@ Latest Mark: <unset>
\P\Pabc
No match
+/f.*/
+ \P\Pfor
+Partial match: for
+
+/f.*/s
+ \P\Pfor
+Partial match: for
+
+/f.*/8
+ \P\Pfor
+Partial match: for
+
+/f.*/8s
+ \P\Pfor
+Partial match: for
+
/-- End of testinput2 --/