Parent Directory
|
Revision Log
Tag code/trunk as code/tags/pcre-3.6.
1 | /\x{100}/8DM |
2 | |
3 | /\x{1000}/8DM |
4 | |
5 | /\x{10000}/8DM |
6 | |
7 | /\x{100000}/8DM |
8 | |
9 | /\x{1000000}/8DM |
10 | |
11 | /\x{4000000}/8DM |
12 | |
13 | /\x{7fffFFFF}/8DM |
14 | |
15 | /[\x{ff}]/8DM |
16 | |
17 | /[\x{100}]/8DM |
18 | |
19 | /\x{ffffffff}/8 |
20 | |
21 | /\x{100000000}/8 |
22 | |
23 | /^\x{100}a\x{1234}/8 |
24 | \x{100}a\x{1234}bcd |
25 | |
26 | /\x80/8D |
27 | |
28 | /\xff/8D |
29 | |
30 | /-- These tests are here rather than in testinput5 because Perl 5.6 has --/ |
31 | /-- some problems with UTF-8 support, in the area of \x{..} where the --/ |
32 | /-- value is < 255. It grumbles about invalid UTF-8 strings. --/ |
33 | |
34 | /^[a\x{c0}]b/8 |
35 | \x{c0}b |
36 | |
37 | /^([a\x{c0}]*?)aa/8 |
38 | a\x{c0}aaaa/ |
39 | |
40 | /^([a\x{c0}]*?)aa/8 |
41 | a\x{c0}aaaa/ |
42 | a\x{c0}a\x{c0}aaa/ |
43 | |
44 | /^([a\x{c0}]*)aa/8 |
45 | a\x{c0}aaaa/ |
46 | a\x{c0}a\x{c0}aaa/ |
47 | |
48 | /^([a\x{c0}]*)a\x{c0}/8 |
49 | a\x{c0}aaaa/ |
50 | a\x{c0}a\x{c0}aaa/ |
51 | |
52 | / End of testinput6 / |
ViewVC Help | |
Powered by ViewVC 1.1.5 |