diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py
index 062a00935b1227c2325c6330d1bd33ce3eb76916..6744446ea9e49b40cb246233b8ac2cab9316b4f5 100755
--- a/tools/tinytest-codegen.py
+++ b/tools/tinytest-codegen.py
@@ -54,10 +54,16 @@ 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 = (
-    'float/float2int_doubleprec_intbig.py', # requires double precision floating point to work
-    '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/vfs_fat_ramdisk.py', 'extmod/vfs_fat_fileio.py', 'extmod/vfs_fat_fsusermount.py', 'extmod/vfs_fat_oldproto.py',
+    'extmod/ticks_diff.py',
+    'extmod/time_ms_us.py',
+    'extmod/uheapq_timeq.py',
+    'extmod/vfs_fat_ramdisk.py', 'extmod/vfs_fat_fileio.py',
+    'extmod/vfs_fat_fsusermount.py', 'extmod/vfs_fat_oldproto.py',
+    # requires double precision floating point to work
+    'float/float2int_doubleprec_intbig.py',
+    # inline asm tests
+    'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py',
+    'inlineasm/asmfpmuldiv.py','inlineasm/asmfpsqrt.py',
 )
 
 output = []