aboutsummaryrefslogtreecommitdiff
path: root/tests/run-tests
diff options
context:
space:
mode:
authorDamien George2015-01-07 12:10:47 +0000
committerDamien George2015-01-07 12:10:47 +0000
commitad2307c92c15f0aa90dbd0741fd2538719d0b5e1 (patch)
tree3082ec3627306b5f674364900f2ede2bceb40a8e /tests/run-tests
parentd8bfd77ad5df1417094f125efa9b97a8d35c03cb (diff)
py: Temporary fix for conversion of float to int when fits in small int.
Addresses issue #1044 (see also #1040). Could do with a better fix.
Diffstat (limited to 'tests/run-tests')
-rwxr-xr-xtests/run-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests
index 13f584e41..a88ad4c2b 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -65,7 +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
+ skip_tests.add('float/float2int_doubleprec.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':