aboutsummaryrefslogtreecommitdiff
path: root/tests/run-tests
diff options
context:
space:
mode:
authorAyke van Laethem2018-07-22 16:19:22 +0200
committerDamien George2018-08-04 15:14:23 +1000
commit6572029dc0665e58c2ea7355c9e541bdf83105a4 (patch)
tree7590e55e282f43050f0a1717c41fdc6667663f98 /tests/run-tests
parent7be5bb367212b6949e74f73d90af01f8b68f1352 (diff)
tests: Make tests work on targets without float support.
Diffstat (limited to 'tests/run-tests')
-rwxr-xr-xtests/run-tests4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests
index dd88ac0af..0a70963d7 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -277,8 +277,12 @@ def run_tests(pyb, tests, args, base_path="."):
skip_tests.add('thread/stress_recurse.py') # has reliability issues
if upy_float_precision == 0:
+ skip_tests.add('extmod/uctypes_le_float.py')
+ skip_tests.add('extmod/uctypes_native_float.py')
+ skip_tests.add('extmod/uctypes_sizeof_float.py')
skip_tests.add('extmod/ujson_dumps_float.py')
skip_tests.add('extmod/ujson_loads_float.py')
+ skip_tests.add('extmod/urandom_extra_float.py')
skip_tests.add('misc/rge_sm.py')
if upy_float_precision < 32:
skip_tests.add('float/float2int_intbig.py') # requires fp32, there's float2int_fp30_intbig.py instead