Skip to content

Commit 4db6a7a

Browse files
committed
tools/tinytest-codegen: Wrap lines of exclude_tests.
So it was manageable and extensible.
1 parent 48e931e commit 4db6a7a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

tools/tinytest-codegen.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,16 @@ def script_to_map(test_file):
5454
# currently these tests are selected because they pass on qemu-arm
5555
test_dirs = ('basics', 'micropython', 'float', 'extmod', 'inlineasm') # 'import', 'io', 'misc')
5656
exclude_tests = (
57-
'float/float2int_doubleprec_intbig.py', # requires double precision floating point to work
58-
'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',
59-
'extmod/ticks_diff.py', 'extmod/time_ms_us.py', 'extmod/uheapq_timeq.py',
60-
'extmod/vfs_fat_ramdisk.py', 'extmod/vfs_fat_fileio.py', 'extmod/vfs_fat_fsusermount.py', 'extmod/vfs_fat_oldproto.py',
57+
'extmod/ticks_diff.py',
58+
'extmod/time_ms_us.py',
59+
'extmod/uheapq_timeq.py',
60+
'extmod/vfs_fat_ramdisk.py', 'extmod/vfs_fat_fileio.py',
61+
'extmod/vfs_fat_fsusermount.py', 'extmod/vfs_fat_oldproto.py',
62+
# requires double precision floating point to work
63+
'float/float2int_doubleprec_intbig.py',
64+
# inline asm tests
65+
'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py',
66+
'inlineasm/asmfpmuldiv.py','inlineasm/asmfpsqrt.py',
6167
)
6268

6369
output = []

0 commit comments

Comments
 (0)