summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-09-06 11:04:13 +1000
committerDamien George <damien@micropython.org>2024-09-06 11:08:22 +1000
commit3ea1ce63da9bd17c7d395682387e58b4a7759167 (patch)
tree17a22ea1d475f4bb01a9cd25066ab96cb01f1890 /tests/run-tests.py
parent0426934969d06aa649ba903f5408cb331b5b9c2d (diff)
all: Remove remaining qemu-riscv references.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 999812bd5..b80a78ed6 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -681,8 +681,6 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
skip_tests.add("inlineasm/asmfpldrstr.py")
skip_tests.add("inlineasm/asmfpmuldiv.py")
skip_tests.add("inlineasm/asmfpsqrt.py")
- elif args.target == "qemu-riscv":
- skip_tests.add("misc/print_exception.py") # requires sys stdfiles
elif args.target == "webassembly":
skip_tests.add("basics/string_format_modulo.py") # can't print nulls to stdout
skip_tests.add("basics/string_strip.py") # can't print nulls to stdout
@@ -1047,7 +1045,6 @@ the last matching regex is used:
LOCAL_TARGETS = (
"unix",
- "qemu-riscv",
"webassembly",
)
EXTERNAL_TARGETS = (
@@ -1140,12 +1137,6 @@ the last matching regex is used:
"inlineasm",
"ports/qemu-arm",
)
- elif args.target == "qemu-riscv":
- if not args.write_exp:
- raise ValueError("--target=qemu-riscv must be used with --write-exp")
- # Generate expected output files for qemu run.
- # This list should match the test_dirs tuple in tinytest-codegen.py.
- test_dirs += ("float",)
elif args.target == "webassembly":
test_dirs += ("float", "ports/webassembly")
else: