Skip to content

Commit 2382d30

Browse files
committed
tests/run-tests: Skips for esp8266.
1 parent 259f134 commit 2382d30

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/run-tests

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,12 @@ def run_tests(pyb, tests, args):
218218
skip_tests.add('extmod/uheapq1.py') # uheapq not supported by WiPy
219219
skip_tests.add('extmod/urandom_basic.py') # requires urandom
220220
skip_tests.add('extmod/urandom_extra.py') # requires urandom
221+
elif args.target == 'esp8266':
222+
skip_tests.add('float/float2int.py') # requires at least fp32, there's float2int_fp30.py instead
223+
skip_tests.add('float/string_format.py') # requires at least fp32, there's string_format_fp30.py instead
224+
skip_tests.add('float/bytes_construct.py') # requires fp32
225+
skip_tests.add('float/bytearray_construct.py') # requires fp32
226+
skip_tests.add('misc/rge_sm.py') # too large
221227

222228
# Some tests are known to fail on 64-bit machines
223229
if pyb is None and platform.architecture()[0] == '64bit':

0 commit comments

Comments
 (0)