diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-27 12:35:46 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 12:35:46 +1100 |
commit | f1db8a3097f74aa5499c95a2625bd0bfa285579a (patch) | |
tree | e96490bec7ca5f47fccc2d4c0255243b985ad0a8 /tools | |
parent | cc4c1adf6e05dcda54393fe512e47463fc45414e (diff) | |
download | micropython-f1db8a3097f74aa5499c95a2625bd0bfa285579a.tar.gz micropython-f1db8a3097f74aa5499c95a2625bd0bfa285579a.zip |
qemu-arm: Don't compile tests in "REPL" mode.
Previous to this patch the qemu-arm tests were compiled with is_relp=true
meaning that the __repl_print__ function was called for all lines of code
in the outer scope. This is not the right behaviour for scripts that are
executed as though they were a file (eg tests).
With this fix the micropython/heapalloc_str.py test now works so it is
removed from the test blacklist.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tinytest-codegen.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index 4c245e85ec..3436d0f456 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -49,7 +49,6 @@ testgroup_member = ( test_dirs = ('basics', 'micropython', 'float', 'extmod', 'inlineasm') # 'import', 'io', 'misc') exclude_tests = ( 'float/float2int_doubleprec.py', # requires double precision floating point to work - 'micropython/heapalloc_str.py', # unknown 'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py', 'extmod/ticks_diff.py', 'extmod/time_ms_us.py', 'extmod/uheapq_timeq.py', 'extmod/machine_pinbase.py', 'extmod/machine_pulse.py', |