Updated PCRE source to version 8.32 (bug 5593).

This commit is contained in:
Nicholas Hastings
2013-03-17 11:32:03 -04:00
parent ed6d8521e6
commit 6ce00034a2
340 changed files with 154241 additions and 63858 deletions
+27
View File
@@ -0,0 +1,27 @@
/-- These DFA tests are for the handling of characters greater than 255 in
16- or 32-bit, non-UTF mode. --/
/^\x{ffff}+/i
\x{ffff}
0: \x{ffff}
/^\x{ffff}?/i
\x{ffff}
0: \x{ffff}
1:
/^\x{ffff}*/i
\x{ffff}
0: \x{ffff}
1:
/^\x{ffff}{3}/i
\x{ffff}\x{ffff}\x{ffff}
0: \x{ffff}\x{ffff}\x{ffff}
/^\x{ffff}{0,3}/i
\x{ffff}
0: \x{ffff}
1:
/-- End of testinput20 --/