Regex: Update PCRE to v8.35.

I was über lazy at first, so took libs from SM.
But actually it's quite easy to compile, so let's update to latest version \o/.
This commit is contained in:
Arkshine
2014-07-05 13:53:30 +02:00
parent d1153b8049
commit d4de0e6f1e
241 changed files with 51074 additions and 15011 deletions

View File

@ -8,16 +8,26 @@ No options
First char = 'a'
Need char = 'c'
Subject length lower bound = 3
No set of starting bytes
No starting char list
JIT study was successful
/ab(*THEN)/S+I
/(?(?C1)(?=a)a)/S+I
Capturing subpattern count = 0
May match empty string
No options
First char = 'a'
Need char = 'b'
Subject length lower bound = 2
No set of starting bytes
No first char
No need char
Study returned NULL
JIT study was not successful
/(?(?C1)(?=a)a)/S!+I
Capturing subpattern count = 0
May match empty string
No options
No first char
No need char
Subject length lower bound = -1
No starting char list
JIT study was not successful
/abc/S+I>testsavedregex
@ -26,7 +36,7 @@ No options
First char = 'a'
Need char = 'c'
Subject length lower bound = 3
No set of starting bytes
No starting char list
JIT study was successful
Compiled pattern written to testsavedregex
Study data written to testsavedregex
@ -39,6 +49,7 @@ Study data loaded from testsavedregex
/a*/SI
Capturing subpattern count = 0
May match empty string
No options
No first char
No need char
@ -154,28 +165,15 @@ No options
First char = 'a'
Need char = 'd'
Subject length lower bound = 4
No set of starting bytes
No starting char list
JIT study was successful
/(*NO_START_OPT)a(*:m)b/KS++
a
No match, mark = m (JIT)
/.?(*THEN)/S+I
Capturing subpattern count = 0
No options
No first char
No need char
Study returned NULL
JIT study was not successful
/.?(*THEN)/S!+I
Capturing subpattern count = 0
No options
No first char
No need char
Subject length lower bound = -1
No set of starting bytes
JIT study was not successful
/^12345678abcd/mS++
12345678abcd
0: 12345678abcd (JIT)
/-- End of testinput12 --/