Skip to content

Commit b33f647

Browse files
committed
tests/run-tests.py: Only run inlineasm tests on rp2 ARM targets.
Signed-off-by: Damien George <[email protected]>
1 parent b42bb91 commit b33f647

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/run-tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,9 @@ def main():
10951095
elif args.target in ("renesas-ra"):
10961096
test_dirs += ("float", "inlineasm", "ports/renesas-ra")
10971097
elif args.target == "rp2":
1098-
test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2")
1098+
test_dirs += ("float", "stress", "thread", "ports/rp2")
1099+
if "arm" in args.mpy_cross_flags:
1100+
test_dirs += ("inlineasm",)
10991101
elif args.target == "esp32":
11001102
test_dirs += ("float", "stress", "thread")
11011103
elif args.target in ("esp8266", "minimal", "nrf"):

0 commit comments

Comments
 (0)