diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/micropython-upip-0.7.tar.gz | bin | 4614 -> 0 bytes | |||
-rw-r--r-- | tools/micropython-upip-1.1.3.tar.gz | bin | 0 -> 4072 bytes | |||
-rwxr-xr-x | tools/mpy-tool.py | 4 | ||||
-rwxr-xr-x | tools/tinytest-codegen.py | 11 |
4 files changed, 11 insertions, 4 deletions
diff --git a/tools/micropython-upip-0.7.tar.gz b/tools/micropython-upip-0.7.tar.gz Binary files differdeleted file mode 100644 index cd36d136e2..0000000000 --- a/tools/micropython-upip-0.7.tar.gz +++ /dev/null diff --git a/tools/micropython-upip-1.1.3.tar.gz b/tools/micropython-upip-1.1.3.tar.gz Binary files differnew file mode 100644 index 0000000000..90f726d862 --- /dev/null +++ b/tools/micropython-upip-1.1.3.tar.gz diff --git a/tools/mpy-tool.py b/tools/mpy-tool.py index bc8ac4fbd3..2bb9fc367e 100755 --- a/tools/mpy-tool.py +++ b/tools/mpy-tool.py @@ -107,8 +107,8 @@ def make_opcode_format(): OC4(B, B, O, U), # 0x44-0x47 OC4(U, U, U, U), # 0x48-0x4b OC4(U, U, U, U), # 0x4c-0x4f - OC4(V, V, V, V), # 0x50-0x53 - OC4(B, V, V, V), # 0x54-0x57 + OC4(V, V, U, V), # 0x50-0x53 + OC4(B, U, V, V), # 0x54-0x57 OC4(V, V, V, B), # 0x58-0x5b OC4(B, B, B, U), # 0x5c-0x5f OC4(V, V, V, V), # 0x60-0x63 diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index 091c1b065f..bab937135f 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -46,8 +46,15 @@ testgroup_member = ( ## XXX: may be we could have `--without <groups>` argument... # currently these tests are selected because they pass on qemu-arm -test_dirs = ('basics', 'micropython', 'inlineasm') # 'float', 'import', 'io', 'misc') -exclude_tests = ('inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py',) +test_dirs = ('basics', 'micropython', 'extmod', 'inlineasm') # 'float', 'import', 'io', 'misc') +exclude_tests = ( + 'inlineasm/asmfpaddsub.py', 'inlineasm/asmfpcmp.py', 'inlineasm/asmfpldrstr.py', 'inlineasm/asmfpmuldiv.py', 'inlineasm/asmfpsqrt.py', + 'extmod/time_ms_us.py', + 'extmod/ujson_dumps_float.py', 'extmod/ujson_loads_float.py', + 'extmod/uctypes_native_float.py', 'extmod/uctypes_le_float.py', + 'extmod/machine_pinbase.py', 'extmod/machine_pulse.py', + 'extmod/vfs_fat_ramdisk.py', +) output = [] |