diff options
author | Damien George <damien.p.george@gmail.com> | 2016-10-14 00:08:19 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-10-14 00:08:19 +1100 |
commit | b0a15aa73540f82ef47c9492af7ce196d1b1a6e9 (patch) | |
tree | 22fa2e58c9b744b18e925a5d142d21608b728158 /tools/tinytest-codegen.py | |
parent | 8298251215a1606b50d8110665dc6bff9e31ab0e (diff) | |
download | micropython-b0a15aa73540f82ef47c9492af7ce196d1b1a6e9.tar.gz micropython-b0a15aa73540f82ef47c9492af7ce196d1b1a6e9.zip |
qemu-arm: Enable lots of extmods and enable tests for them.
The qemu-arm port is used for testing of ARM Thumb architecture on a
desktop so should have many features enabled.
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index 091c1b065f..bab937135f 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -46,8 +46,15 @@ testgroup_member = ( ## XXX: may be we could have `--without <groups>` argument... # currently these tests are selected because they pass on qemu-arm -test_dirs = ('basics', 'micropython', 'inlineasm') # 'float', 'import', 'io', 'misc') -exclude_tests = ('inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',) +test_dirs = ('basics', 'micropython', 'extmod', 'inlineasm') # 'float', 'import', 'io', 'misc') +exclude_tests = ( + 'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py', + 'extmod/time_ms_us.py', + 'extmod/ujson_dumps_float.py', 'extmod/ujson_loads_float.py', + 'extmod/uctypes_native_float.py', 'extmod/uctypes_le_float.py', + 'extmod/machine_pinbase.py', 'extmod/machine_pulse.py', + 'extmod/vfs_fat_ramdisk.py', +) output = [] |