summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordanicampora <daniel@wipy.io>2016-02-21 22:30:35 +0100
committerdanicampora <daniel@wipy.io>2016-02-21 22:30:35 +0100
commit5148860332e056f233203c26c7c4f3de97226aeb (patch)
tree794d39acbd4bd1fb570c10e31feae5228b75e2e7 /tests
parent495e7cfebce63d0168852269f279c24373abdd3a (diff)
tests: Skip uctypes and urandom tests not supported byt the WiPy.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests
index fcc27da09..534518858 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -211,11 +211,13 @@ def run_tests(pyb, tests, args):
skip_tests.add('misc/recursive_data.py') # requires stack checking enabled
skip_tests.add('misc/recursive_iternext.py') # requires stack checking enabled
skip_tests.add('misc/rge_sm.py') # requires floating point
- 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
+ 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
skip_tests.add('extmod/zlibd_decompress.py') # requires zlib
skip_tests.add('extmod/ujson_dumps_float.py') # requires floating point
skip_tests.add('extmod/ujson_loads_float.py') # requires floating point
skip_tests.add('extmod/uheapq1.py') # uheapq not supported by WiPy
+ skip_tests.add('extmod/urandom_basic.py') # requires urandom
+ skip_tests.add('extmod/urandom_extra.py') # requires urandom
# Some tests are known to fail on 64-bit machines
if pyb is None and platform.architecture()[0] == '64bit':