8000 all: Remove remaining qemu-riscv references. · cuatrobits/micropython@3ea1ce6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3ea1ce6

Browse files
committed
all: Remove remaining qemu-riscv references.
Signed-off-by: Damien George <damien@micropython.org>
1 parent 0426934 commit 3ea1ce6

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ In addition, the following ports are provided in this repository:
115115
- [pic16bit](ports/pic16bit) -- Microchip PIC 16-bit.
116116
- [powerpc](ports/powerpc) -- IBM PowerPC (including Microwatt)
117117
- [qemu-arm](ports/qemu-arm) -- QEMU-based Arm emulated target (for testing)
118-
- [qemu-riscv](ports/qemu-riscv) -- QEMU-based RISC-V emulated target (for testing)
119118
- [renesas-ra](ports/renesas-ra) -- Renesas RA family.
120119
- [rp2](ports/rp2) -- Raspberry Pi RP2040 (including Pico and Pico W).
121120
- [samd](ports/samd) -- Microchip (formerly Atmel) SAMD21 and SAMD51.

tests/run-tests.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,6 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
681681
skip_tests.add("inlineasm/asmfpldrstr.py")
682682
skip_tests.add("inlineasm/asmfpmuldiv.py")
683683
skip_tests.add("inlineasm/asmfpsqrt.py")
684-
elif args.target == "qemu-riscv":
685-
skip_tests.add("misc/print_exception.py") # requires sys stdfiles
686684
elif args.target == "webassembly":
687685
skip_tests.add("basics/string_format_modulo.py") # can't print nulls to stdout
688686
skip_tests.add("basics/string_strip.py") # can't print nulls to stdout
@@ -1047,7 +1045,6 @@ def main():
10471045

10481046
LOCAL_TARGETS = (
10491047
"unix",
1050-
"qemu-riscv",
10511048
"webassembly",
10521049
)
10531050
EXTERNAL_TARGETS = (
@@ -1140,12 +1137,6 @@ def main():
11401137
"inlineasm",
11411138
"ports/qemu-arm",
11421139
)
1143-
elif args.target == "qemu-riscv":
1144-
if not args.write_exp:
1145-
raise ValueError("--target=qemu-riscv must be used with --write-exp")
1146-
# Generate expected output files for qemu run.
1147-
# This list should match the test_dirs tuple in tinytest-codegen.py.
1148-
test_dirs += ("float",)
11491140
elif args.target == "webassembly":
11501141
test_dirs += ("float", "ports/webassembly")
11511142
else:

0 commit comments

Comments
 (0)
0