diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-27 17:33:20 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 17:35:45 +0200 |
commit | 958e273336644833de52c91ffee67b91493bb403 (patch) | |
tree | 87463c0e7ebeeb369eb4e7e2f581b0784782f71b | |
parent | c92e6a45ebba4d41c2d0d891e07f94a81d2f601f (diff) | |
download | micropython-958e273336644833de52c91ffee67b91493bb403.tar.gz micropython-958e273336644833de52c91ffee67b91493bb403.zip |
tests: Skip extmod machine tests when target is WiPy.
-rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index 29d2120e0d..ea7493fd0d 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -197,6 +197,8 @@ def run_tests(pyb, tests, args): 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/machine1.py') # raw memory access not supported by WiPy + skip_tests.add('extmod/machine_mem.py') # raw memory access not supported by WiPy skip_tests.add('basics/exception_chain.py') # warning is not printed # Some tests are known to fail on 64-bit machines |