Skip to content

Commit e693e52

Browse files
committed
tests: Disable some tests for pyboard that do not run correctly.
1 parent 9d0192d commit e693e52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/run-tests

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,12 @@ def run_tests(pyb, tests, args):
188188

189189
# Some tests shouldn't be run on pyboard
190190
if pyb is not None:
191+
skip_tests.add('basics/exception_chain.py') # warning is not printed
191192
skip_tests.add('float/float_divmod.py') # tested by float/float_divmod_relaxed.py instead
192193
skip_tests.add('float/float2int_doubleprec.py') # requires double precision floating point to work
193194
skip_tests.add('micropython/meminfo.py') # output is very different to PC output
195+
skip_tests.add('extmod/machine1.py') # raw memory access not supported
196+
skip_tests.add('extmod/machine_mem.py') # raw memory access not supported
194197

195198
if args.target == 'wipy':
196199
skip_tests.add('misc/print_exception.py') # requires error reporting full
@@ -202,10 +205,7 @@ def run_tests(pyb, tests, args):
202205
skip_tests.add('extmod/zlibd_decompress.py') # requires zlib
203206
skip_tests.add('extmod/ujson_dumps_float.py') # requires floating point
204207
skip_tests.add('extmod/ujson_loads_float.py') # requires floating point
205-
skip_tests.add('extmod/machine1.py') # raw memory access not supported by WiPy
206-
skip_tests.add('extmod/machine_mem.py') # raw memory access not supported by WiPy
207208
skip_tests.add('extmod/uheapq1.py') # uheapq not supported by WiPy
208-
skip_tests.add('basics/exception_chain.py') # warning is not printed
209209

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

0 commit comments

Comments
 (0)