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

@ -1,6 +1,9 @@
/-- This set of tests is run only with the 8-bit library. It starts with all
the tests of the POSIX interface, because that is supported only with the
8-bit library. --/
/-- This set of tests is run only with the 8-bit library. They do not require
UTF-8 or Unicode property support. The file starts with all the tests of
the POSIX interface, because that is supported only with the 8-bit library.
--/
< forbid 8W
/abc/P
abc
@ -85,9 +88,12 @@
a\nb
** Failers (too big char)
A\x{123}B
A\o{443}B
/\x{100}/I
/\o{400}/I
/ (?: [\040\t] | \(
(?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] | \( (?: [^\\\x80-\xff\n\015()] | \\ [^\x80-\xff] )* \) )*
\) )* # optional leading comment
@ -294,8 +300,12 @@ not matter. --/
/\h/SI
/\H/SI
/\v/SI
/\V/SI
/\R/SI
/[\h]/BZ
@ -326,4 +336,8 @@ not matter. --/
/[\u0100-\u0200]/<JS>
/[^\x00-a]{12,}[^b-\xff]*/BZ
/[^\s]*\s* [^\W]+\W+ [^\d]*?\d0 [^\d\w]{4,6}?\w*A/BZ
/-- End of testinput14 --/