1 /-- Tests for the 32-bit library only */ 2 3 < forbid 8W 4 5 /-- Check maximum character size --/ 6 7 /\x{110000}/ 8 9 /\x{7fffffff}/ 10 11 /\x{80000000}/ 12 13 /\x{ffffffff}/ 14 15 /\x{100000000}/ 16 17 /\o{17777777777}/ 18 19 /\o{20000000000}/ 20 21 /\o{37777777777}/ 22 23 /\o{40000000000}/ 24 25 /\x{7fffffff}\x{7fffffff}/I 26 27 /\x{80000000}\x{80000000}/I 28 29 /\x{ffffffff}\x{ffffffff}/I 30 31 /-- Non-UTF characters --/ 32 33 /\C{2,3}/ 34 \x{400000}\x{400001}\x{400002}\x{400003} 35 36 /\x{400000}\x{800000}/iDZ 37 38 /-- Check character ranges --/ 39 40 /[\H]/BZSI 41 42 /[\V]/BZSI 43 44 /-- End of testinput25 --/ 45