Browse Source

tests: Disable float/float2int.py on pyboard (needs double prec).

pull/1031/head
Damien George 10 years ago
parent
commit
816a46a4ab
  1. 1
      tests/run-tests

1
tests/run-tests

@ -65,6 +65,7 @@ def run_tests(pyb, tests, args):
# Some tests shouldn't be run on pyboard # Some tests shouldn't be run on pyboard
if pyb is not None: if pyb is not None:
skip_tests.add('float/float_divmod.py') # tested by float/float_divmod_relaxed.py instead skip_tests.add('float/float_divmod.py') # tested by float/float_divmod_relaxed.py instead
skip_tests.add('float/float2int.py') # requires double precision floating point to work
# Some tests are known to fail on 64-bit machines # Some tests are known to fail on 64-bit machines
if pyb is None and platform.architecture()[0] == '64bit': if pyb is None and platform.architecture()[0] == '64bit':

Loading…
Cancel
Save