tests/run-tests.py: Only run inlineasm tests on rp2 ARM targets.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2024-10-11 13:41:28 +11:00
parent b42bb911c6
commit b33f64792f

View File

@ -1095,7 +1095,9 @@ the last matching regex is used:
elif args.target in ("renesas-ra"):
test_dirs += ("float", "inlineasm", "ports/renesas-ra")
elif args.target == "rp2":
test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2")
test_dirs += ("float", "stress", "thread", "ports/rp2")
if "arm" in args.mpy_cross_flags:
test_dirs += ("inlineasm",)
elif args.target == "esp32":
test_dirs += ("float", "stress", "thread")
elif args.target in ("esp8266", "minimal", "nrf"):