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>
This commit is contained in:
Damien George
2023-09-27 13:11:58 +10:00
parent 52f76cf4fc
commit 3695211576
3 changed files with 9 additions and 6 deletions

View File

@@ -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")