8000 tests/run-tests.py: Update for renesas-ra port. · sstobbe/micropython@3717d59 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3717d59

Browse files
tests/run-tests.py: Update for renesas-ra port.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
1 parent 4753913 commit 3717d59

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/run-tests.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,10 @@ def run_tests(pyb, tests, args, result_dir, num_threads=1):
485485
for t in tests:
486486
if t.startswith("basics/io_"):
487487
skip_tests.add(t)
488+
elif args.target == "renesas-ra":
489+
skip_tests.add(
490+
"extmod/utime_time_ns.py"
491+
) # RA fsp rtc function doesn't support nano sec info
488492
elif args.target == "qemu-arm":
489493
skip_tests.add("misc/print_exception.py") # requires sys stdfiles
490494

@@ -803,7 +807,7 @@ def main():
803807
"unix",
804808
"qemu-arm",
805809
)
806-
EXTERNAL_TARGETS = ("pyboard", "wipy", "esp8266", "esp32", "minimal", "nrf")
810+
EXTERNAL_TARGETS = ("pyboard", "wipy", "esp8266", "esp32", "minimal", "nrf", "renesas-ra")
807811
if args.target in LOCAL_TARGETS or args.list_tests:
808812
pyb = None
809813
elif args.target in EXTERNAL_TARGETS:
@@ -827,6 +831,8 @@ def main():
827831
if args.target == "pyboard":
828832
# run pyboard tests
829833
test_dirs += ("float", "stress", "pyb", "pybnative", "inlineasm")
834+
elif args.target in ("renesas-ra"):
835+
test_dirs += ("float", "inlineasm", "renesas-ra")
830836
elif args.target in ("esp8266", "esp32", "minimal", "nrf"):
831837
test_dirs += ("float",)
832838
elif args.target == "wipy":

0 commit comments

Comments
 (0)
0