diff options
| author | Damien George <damien@micropython.org> | 2024-09-04 17:06:25 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-09-06 11:08:39 +1000 |
| commit | 659113825d10bf2ae71dd215a8597451e505982d (patch) | |
| tree | 63b93e24621ab85d01bf7f627839077f524b4cb7 /tests | |
| parent | 3ea1ce63da9bd17c7d395682387e58b4a7759167 (diff) | |
qemu: Rename qemu-arm port to qemu.
Because this port now supports multiple architectures.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/float/float_format_ints_power10.py | 2 | ||||
| -rw-r--r-- | tests/ports/qemu/asm_test.py (renamed from tests/ports/qemu-arm/asm_test.py) | 0 | ||||
| -rw-r--r-- | tests/ports/qemu/asm_test.py.exp (renamed from tests/ports/qemu-arm/asm_test.py.exp) | 0 | ||||
| -rw-r--r-- | tests/ports/qemu/native_test.py (renamed from tests/ports/qemu-arm/native_test.py) | 0 | ||||
| -rw-r--r-- | tests/ports/qemu/native_test.py.exp (renamed from tests/ports/qemu-arm/native_test.py.exp) | 0 | ||||
| -rw-r--r-- | tests/ports/qemu/viper_test.py (renamed from tests/ports/qemu-arm/viper_test.py) | 0 | ||||
| -rw-r--r-- | tests/ports/qemu/viper_test.py.exp (renamed from tests/ports/qemu-arm/viper_test.py.exp) | 0 | ||||
| -rwxr-xr-x | tests/run-tests.py | 8 |
8 files changed, 5 insertions, 5 deletions
diff --git a/tests/float/float_format_ints_power10.py b/tests/float/float_format_ints_power10.py index 98900c135..7ea200f18 100644 --- a/tests/float/float_format_ints_power10.py +++ b/tests/float/float_format_ints_power10.py @@ -3,6 +3,6 @@ # Check that powers of 10 (that fit in float32) format correctly. for i in range(31): - # It works to 12 digits on all platforms *except* qemu-arm, where + # It works to 12 digits on all platforms *except* qemu, where # 10^11 comes out as 10000000820 or something. print(i, "{:.7g}".format(float("1e" + str(i)))) diff --git a/tests/ports/qemu-arm/asm_test.py b/tests/ports/qemu/asm_test.py index 26c7efe42..26c7efe42 100644 --- a/tests/ports/qemu-arm/asm_test.py +++ b/tests/ports/qemu/asm_test.py diff --git a/tests/ports/qemu-arm/asm_test.py.exp b/tests/ports/qemu/asm_test.py.exp index b4be8b40e..b4be8b40e 100644 --- a/tests/ports/qemu-arm/asm_test.py.exp +++ b/tests/ports/qemu/asm_test.py.exp diff --git a/tests/ports/qemu-arm/native_test.py b/tests/ports/qemu/native_test.py index 0b58433d9..0b58433d9 100644 --- a/tests/ports/qemu-arm/native_test.py +++ b/tests/ports/qemu/native_test.py diff --git a/tests/ports/qemu-arm/native_test.py.exp b/tests/ports/qemu/native_test.py.exp index dcf37cd5e..dcf37cd5e 100644 --- a/tests/ports/qemu-arm/native_test.py.exp +++ b/tests/ports/qemu/native_test.py.exp diff --git a/tests/ports/qemu-arm/viper_test.py b/tests/ports/qemu/viper_test.py index 8e38a2b92..8e38a2b92 100644 --- a/tests/ports/qemu-arm/viper_test.py +++ b/tests/ports/qemu/viper_test.py diff --git a/tests/ports/qemu-arm/viper_test.py.exp b/tests/ports/qemu/viper_test.py.exp index 00750edc0..00750edc0 100644 --- a/tests/ports/qemu-arm/viper_test.py.exp +++ b/tests/ports/qemu/viper_test.py.exp diff --git a/tests/run-tests.py b/tests/run-tests.py index b80a78ed6..43a9e38d3 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -675,7 +675,7 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1): skip_tests.add( "extmod/time_time_ns.py" ) # RA fsp rtc function doesn't support nano sec info - elif args.target == "qemu-arm": + elif args.target == "qemu": skip_tests.add("inlineasm/asmfpaddsub.py") # requires Cortex-M4 skip_tests.add("inlineasm/asmfpcmp.py") skip_tests.add("inlineasm/asmfpldrstr.py") @@ -1054,7 +1054,7 @@ the last matching regex is used: "esp32", "minimal", "nrf", - "qemu-arm", + "qemu", "renesas-ra", "rp2", ) @@ -1131,11 +1131,11 @@ the last matching regex is used: "cmdline", "ports/unix", ) - elif args.target == "qemu-arm": + elif args.target == "qemu": test_dirs += ( "float", "inlineasm", - "ports/qemu-arm", + "ports/qemu", ) elif args.target == "webassembly": test_dirs += ("float", "ports/webassembly") |
