1 |
/-- This set of tests is for the 16-bit library's basic (non-UTF-16) features
|
2 |
that are not compatible with the 8-bit library. --/
|
3 |
|
4 |
/a\Cb/
|
5 |
aXb
|
6 |
0: aXb
|
7 |
a\nb
|
8 |
0: a\x0ab
|
9 |
|
10 |
/-- Check maximum non-UTF character size --/
|
11 |
|
12 |
/\x{ffff}/
|
13 |
A\x{ffff}B
|
14 |
** Character \x{ffff} is greater than 255.
|
15 |
** Because its input is first processed as 8-bit, pcretest does not
|
16 |
** support such characters in 16-bit mode when UTF-16 is not set.
|
17 |
** Truncation will probably give the wrong result.
|
18 |
No match
|
19 |
|
20 |
/\x{10000}/
|
21 |
Failed: character value in \x{...} sequence is too large at offset 8
|
22 |
|
23 |
/[^\x{c4}]/DZ
|
24 |
------------------------------------------------------------------
|
25 |
Bra
|
26 |
[^\xc4]
|
27 |
Ket
|
28 |
End
|
29 |
------------------------------------------------------------------
|
30 |
Capturing subpattern count = 0
|
31 |
No options
|
32 |
No first char
|
33 |
No need char
|
34 |
|
35 |
/-- End of testinput17 --/
|