diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:47:35 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 18:47:35 +0200 |
commit | d5de1bf853f48fc77c400fea80ed684f6bb18fb2 (patch) | |
tree | 5b8e735e4365bb25ee9e6b5bde7f604d4650e84b /tests | |
parent | eb9a3ec6543f92356856f88c183a003791e8f7b6 (diff) | |
download | micropython-d5de1bf853f48fc77c400fea80ed684f6bb18fb2.tar.gz micropython-d5de1bf853f48fc77c400fea80ed684f6bb18fb2.zip |
tests: Skip uheapq1 test if target is WiPy.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run-tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests index ea7493fd0d..0c344b96d8 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -199,6 +199,7 @@ def run_tests(pyb, tests, args): 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('extmod/uheapq1.py') # uheapq 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 |