|
1 | 1 | # Port-specific tests exclusion list.
|
2 | 2 |
|
3 |
| -exclude_tests = exclude_tests.union( |
4 |
| - ( |
5 |
| - # Native code generation is not yet supported. |
6 |
| - "micropython/native_closure.py", |
7 |
| - "micropython/native_const.py", |
8 |
| - "micropython/native_const_intbig.py", |
9 |
| - "micropython/native_for.py", |
10 |
| - "micropython/native_fun_attrs.py", |
11 |
| - "micropython/native_gen.py", |
12 |
| - "micropython/native_misc.py", |
13 |
| - "micropython/native_try.py", |
14 |
| - "micropython/native_try_deep.py", |
15 |
| - "micropython/native_while.py", |
16 |
| - "micropython/native_with.py", |
17 |
| - |
18 |
| - # Viper code generator is not yet supported. |
19 |
| - "micropython/viper_addr.py", |
20 |
| - "micropython/viper_args.py", |
21 |
| - "micropython/viper_binop_arith.py", |
22 |
| - "micropython/viper_binop_arith_uint.py", |
23 |
| - "micropython/viper_binop_bitwise_uint.py", |
24 |
| - "micropython/viper_binop_comp.py", |
25 |
| - "micropython/viper_binop_comp_imm.py", |
26 |
| - "micropython/viper_binop_comp_uint.py", |
27 |
| - "micropython/viper_binop_divmod.py", |
28 |
| - "micropython/viper_binop_multi_comp.py", |
29 |
| - "micropython/viper_cond.py", |
30 |
| - "micropython/viper_const.py", |
31 |
| - "micropython/viper_const_intbig.py", |
32 |
| - "micropython/viper_error.py", |
33 |
| - "micropython/viper_globals.py", |
34 |
| - "micropython/viper_import.py", |
35 |
| - "micropython/viper_misc.py", |
36 |
| - "micropython/viper_misc2.py", |
37 |
| - "micropython/viper_misc3.py", |
38 |
| - "micropython/viper_misc_intbig.py", |
39 |
| - "micropython/viper_ptr16_load.py", |
40 |
| - "micropython/viper_ptr16_store.py", |
41 |
| - "micropython/viper_ptr32_load.py", |
42 |
| - "micropython/viper_ptr32_store.py", |
43 |
| - "micropython/viper_ptr8_load.py", |
44 |
| - "micropython/viper_ptr8_store.py", |
45 |
| - "micropython/viper_storeattr.py", |
46 |
| - "micropython/viper_subscr.py", |
47 |
| - "micropython/viper_subscr_multi.py", |
48 |
| - "micropython/viper_try.py", |
49 |
| - "micropython/viper_types.py", |
50 |
| - "micropython/viper_unop.py", |
51 |
| - "micropython/viper_with.py", |
52 |
| - ) |
53 |
| -) |
| 3 | +exclude_tests = exclude_tests.union(()) |
0 commit comments