summaryrefslogtreecommitdiff
path: root/testdata
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-11 21:54:20 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-01-11 21:54:20 +0000
commitb390085e004caf7f53666fabd1d6da8474c51d73 (patch)
tree017fcf56528e33d4a186dba2557ee4b636543b6f /testdata
parent72e25ffe7010391778433c9f5ed6a5e217e1d7c4 (diff)
downloadpcre-b390085e004caf7f53666fabd1d6da8474c51d73.tar.gz
Improve pattern prefix search by a simplified Boyer-Moore algorithm in JIT.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1440 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata')
-rw-r--r--testdata/testinput23
-rw-r--r--testdata/testoutput24
2 files changed, 7 insertions, 0 deletions
diff --git a/testdata/testinput2 b/testdata/testinput2
index 072650c..c1b1db1 100644
--- a/testdata/testinput2
+++ b/testdata/testinput2
@@ -4048,4 +4048,7 @@ backtracking verbs. --/
/(?=ab\K)/+
abcd
+/abcd/f<lf>
+ xx\nxabcd
+
/-- End of testinput2 --/
diff --git a/testdata/testoutput2 b/testdata/testoutput2
index b82488c..e3e2f58 100644
--- a/testdata/testoutput2
+++ b/testdata/testoutput2
@@ -14131,4 +14131,8 @@ Start of matched string is beyond its end - displaying from end to start.
0: ab
0+ abcd
+/abcd/f<lf>
+ xx\nxabcd
+No match
+
/-- End of testinput2 --/