summaryrefslogtreecommitdiff
path: root/tools/tinytest-codegen.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-12-11 20:00:25 +0200
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-12-13 09:07:51 +0200
commite6f0d547ab16096d7a2c24824c6e398c082c0d50 (patch)
tree41e9b70149523b355fc360f0cc8cf217dcd7a6b2 /tools/tinytest-codegen.py
parent4db6a7adbe25ba2a096cd70ec4072c168fdb4bd4 (diff)
tools/tinytest-codegen: More excludes after enabling expected output match.
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-xtools/tinytest-codegen.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py
index 6744446ea..d7761cd5a 100755
--- a/tools/tinytest-codegen.py
+++ b/tools/tinytest-codegen.py
@@ -54,16 +54,31 @@ testgroup_member = (
# currently these tests are selected because they pass on qemu-arm
test_dirs = ('basics', 'micropython', 'float', 'extmod', 'inlineasm') # 'import', 'io', 'misc')
exclude_tests = (
+ # pattern matching in .exp
+ 'basics/bytes_compare3.py',
'extmod/ticks_diff.py',
'extmod/time_ms_us.py',
'extmod/uheapq_timeq.py',
+ # unicode char issue
+ 'extmod/ujson_loads.py',
+ # doesn't output to python stdout
+ 'extmod/ure_debug.py',
+ 'extmod/vfs_basic.py',
'extmod/vfs_fat_ramdisk.py', 'extmod/vfs_fat_fileio.py',
'extmod/vfs_fat_fsusermount.py', 'extmod/vfs_fat_oldproto.py',
+ # rounding issues
+ 'float/float_divmod.py',
# requires double precision floating point to work
'float/float2int_doubleprec_intbig.py',
- # inline asm tests
+ 'float/float_parse_doubleprec.py',
+ # inline asm FP tests (require Cortex-M4)
'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py',
'inlineasm/asmfpmuldiv.py','inlineasm/asmfpsqrt.py',
+ # different filename in output
+ 'micropython/emg_exc.py',
+ 'micropython/heapalloc_traceback.py',
+ # pattern matching in .exp
+ 'micropython/meminfo.py',
)
output = []