blob: 3bf1720b265196dd98f7215d779fa07d494bf805 [file] [log] [blame]
Janis Danisevskis112c9cc2016-03-31 13:35:25 +01001# This set of tests is run only with the 8-bit library. It tests the POSIX
2# interface with UTF/UCP support, which is supported only with the 8-bit
3# library. This test should not be run with JIT (which is not available for the
4# POSIX interface).
5
6#pattern posix
7
8/a\x{1234}b/utf
9 a\x{1234}b
10
11/\w/
12\= Expect no match
13 +++\x{c2}
14
15/\w/ucp
16 +++\x{c2}
17
Elliott Hughes9bc971b2018-07-27 13:23:14 -070018/"^AB" 00 "\x{1234}$"/hex,utf
19 AB\x{00}\x{1234}\=posix_startend=0:6
20
Janis Danisevskis112c9cc2016-03-31 13:35:25 +010021# End of testdata/testinput19