summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-12-31 18:46:18 +0000
committerDamien George <damien.p.george@gmail.com>2014-12-31 18:46:18 +0000
commit816a46a4ab7975b200d6c50be29ad927481ad88d (patch)
tree20b13d47bc58506a2b217eada2028f194c105566 /tests
parent2c75665445b555d0bf712566e7d8874e57c5ad81 (diff)
downloadmicropython-816a46a4ab7975b200d6c50be29ad927481ad88d.tar.gz
micropython-816a46a4ab7975b200d6c50be29ad927481ad88d.zip
tests: Disable float/float2int.py on pyboard (needs double prec).
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 037279c1a4..13f584e41f 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -65,6 +65,7 @@ def run_tests(pyb, tests, args):
# Some tests shouldn't be run on pyboard
if pyb is not None:
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
if pyb is None and platform.architecture()[0] == '64bit':