diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2019-08-19 10:59:27 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-08-20 15:14:08 +1000 |
commit | 0bd1eb80ff49dd0d4ad0c369a83a5aadea995944 (patch) | |
tree | 49befa6047dd9e86e28b78675800f0678aa85cc6 /tools/tinytest-codegen.py | |
parent | 4ab5156c01bfd4a6304e26b1dc2d34163b8637c0 (diff) | |
download | micropython-0bd1eb80ff49dd0d4ad0c369a83a5aadea995944.tar.gz micropython-0bd1eb80ff49dd0d4ad0c369a83a5aadea995944.zip |
qemu-arm: Add testing of frozen native modules.
- Split 'qemu-arm' from 'unix' for generating tests.
- Add frozen module to the qemu-arm test build.
- Add test that reproduces the requirement to half-word align native
function data.
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index ad3b3bbec9..bdace1c8b5 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -54,7 +54,7 @@ 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', 'float', 'extmod', 'inlineasm') # 'import', 'io', 'misc') +test_dirs = ('basics', 'micropython', 'misc', 'extmod', 'float', 'inlineasm', 'qemu-arm',) # 'import', 'io',) exclude_tests = ( # pattern matching in .exp 'basics/bytes_compare3.py', @@ -81,6 +81,8 @@ exclude_tests = ( 'micropython/heapalloc_traceback.py', # pattern matching in .exp 'micropython/meminfo.py', + # needs sys stdfiles + 'misc/print_exception.py', ) output = [] |