1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# test that we catch UTF-8 decoding errors
test('utf8_002', normal, compile_fail, [''])
test('utf8_003', normal, compile_fail, [''])
test('utf8_004', normal, compile_fail, [''])
test('utf8_005', normal, compile_fail, [''])
test('utf8_010', normal, compile_fail, [''])
test('utf8_011', normal, compile_fail, [''])
test('utf8_020', normal, compile_fail, [''])
test('utf8_021', normal, compile_fail, [''])
test('utf8_022', normal, compile_fail, [''])
# test that we can understand unicode characters in lexemes
test('utf8_024', normal, compile_and_run, [''])
test('1744', normal, compile_and_run, [''])
test('1103', normal, compile, [''])
test('2302', only_ways(['normal']), compile_fail, [''])
test('4373', normal, compile, [''])
|