summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-10-11 13:41:28 +1100
committerDamien George <damien@micropython.org>2024-10-15 12:23:06 +1100
commitb33f64792f6cff9a14f935ac568e82ec385bf54d (patch)
tree00d5c2ed9133b8be9af60cccb0de5162237257b4
parentb42bb911c663dc90575d6a7fe3ea4760b6559372 (diff)
tests/run-tests.py: Only run inlineasm tests on rp2 ARM targets.
Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-xtests/run-tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index a9fb458f2..f9f841307 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -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"):