testinput25 529 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /-- Tests for the 32-bit library only */
  2. < forbid 8W
  3. /-- Check maximum character size --/
  4. /\x{110000}/
  5. /\x{7fffffff}/
  6. /\x{80000000}/
  7. /\x{ffffffff}/
  8. /\x{100000000}/
  9. /\o{17777777777}/
  10. /\o{20000000000}/
  11. /\o{37777777777}/
  12. /\o{40000000000}/
  13. /\x{7fffffff}\x{7fffffff}/I
  14. /\x{80000000}\x{80000000}/I
  15. /\x{ffffffff}\x{ffffffff}/I
  16. /-- Non-UTF characters --/
  17. /\C{2,3}/
  18. \x{400000}\x{400001}\x{400002}\x{400003}
  19. /\x{400000}\x{800000}/iDZ
  20. /-- Check character ranges --/
  21. /[\H]/BZSI
  22. /[\V]/BZSI
  23. /-- End of testinput25 --/