summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-09-27 13:11:58 +1000
committerDamien George <damien@micropython.org>2023-09-29 12:00:15 +1000
commit3695211576ed69671b98412ff5278265ab65e6bd (patch)
treed86ccbb1f4888a1a48572d4de72a14918298238d /tests/run-tests.py
parent52f76cf4fc1287b000e510a8ed50297bbdb4d4de (diff)
tests/float/float_format_ints.py: Put power-of-10 test in separate file.
This test doesn't pass on builds with 30-bit floats (object repr C). Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index de886b8ae..2d511c20c 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -525,6 +525,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
) # requires fp32, there's string_format_fp30.py instead
skip_tests.add("float/bytes_construct.py") # requires fp32
skip_tests.add("float/bytearray_construct.py") # requires fp32
+ skip_tests.add("float/float_format_ints_power10.py") # requires fp32
if upy_float_precision < 64:
skip_tests.add("float/float_divmod.py") # tested by float/float_divmod_relaxed.py instead
skip_tests.add("float/float2int_doubleprec_intbig.py")