Parent Directory
|
Revision Log
Test 20 alleged it was DFA, but was not being run using -dfa. Fixed, and copied some of the tests to the non-DFA tests.
1 | /-- These DFA tests are for the handling of characters greater than 255 in |
2 | 16- or 32-bit, non-UTF mode. --/ |
3 | |
4 | /^\x{ffff}+/i |
5 | \x{ffff} |
6 | |
7 | /^\x{ffff}?/i |
8 | \x{ffff} |
9 | |
10 | /^\x{ffff}*/i |
11 | \x{ffff} |
12 | |
13 | /^\x{ffff}{3}/i |
14 | \x{ffff}\x{ffff}\x{ffff} |
15 | |
16 | /^\x{ffff}{0,3}/i |
17 | \x{ffff} |
18 | |
19 | /-- End of testinput20 --/ |
ViewVC Help | |
Powered by ViewVC 1.1.5 |