Skip to content

Commit 5148860

Browse files
author
danicampora
committed
tests: Skip uctypes and urandom tests not supported byt the WiPy.
1 parent 495e7cf commit 5148860

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/run-tests

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,13 @@ def run_tests(pyb, tests, args):
211211
skip_tests.add('misc/recursive_data.py') # requires stack checking enabled
212212
skip_tests.add('misc/recursive_iternext.py') # requires stack checking enabled
213213
skip_tests.add('misc/rge_sm.py') # requires floating point
214-
skip_tests.update({'extmod/uctypes_%s.py' % t for t in 'bytearray le native_le ptr_le ptr_native_le sizeof sizeof_native'.split()}) # requires uctypes
214+
skip_tests.update({'extmod/uctypes_%s.py' % t for t in 'bytearray le native_le ptr_le ptr_native_le sizeof sizeof_native array_assign_le array_assign_native_le'.split()}) # requires uctypes
215215
skip_tests.add('extmod/zlibd_decompress.py') # requires zlib
216216
skip_tests.add('extmod/ujson_dumps_float.py') # requires floating point
217217
skip_tests.add('extmod/ujson_loads_float.py') # requires floating point
218218
skip_tests.add('extmod/uheapq1.py') # uheapq not supported by WiPy
219+
skip_tests.add('extmod/urandom_basic.py') # requires urandom
220+
skip_tests.add('extmod/urandom_extra.py') # requires urandom
219221

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

0 commit comments

Comments
 (0)