diff options
author | Damien George <damien.p.george@gmail.com> | 2016-03-15 13:45:32 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-03-15 13:45:32 +0000 |
commit | be989be861c05b64425267b62c2419e28e7a8cf1 (patch) | |
tree | 853a353ab26276eeec94931430a7000067bb99f8 /tools/tinytest-codegen.py | |
parent | 1ded19d4b3c9710c123a65fd7f369e0022eac02d (diff) | |
download | micropython-be989be861c05b64425267b62c2419e28e7a8cf1.tar.gz micropython-be989be861c05b64425267b62c2419e28e7a8cf1.zip |
qemu-arm: Enable builtin override feature, and enable more tests.
Hopefully these tests run reliably on Travis.
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index e97659f35b..091c1b065f 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -46,10 +46,8 @@ testgroup_member = ( ## XXX: may be we could have `--without <groups>` argument... # currently these tests are selected because they pass on qemu-arm -# basics/try_finally1.py passes on local machine but only passes 50% of the -# time on Travis CI; no idea why so we just disable it. test_dirs = ('basics', 'micropython', 'inlineasm') # 'float', 'import', 'io', 'misc') -exclude_tests = ('basics/builtin_override.py', 'basics/class_super_object.py', 'basics/memoryerror.py', 'basics/try_finally1.py', 'micropython/heapalloc.py', 'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',) +exclude_tests = ('inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',) output = [] |