From 85053adb243800e7168e5736853bea5364770191 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 30 Oct 2024 13:59:31 +1100 Subject: [PATCH] tests/run-tests.py: Add mimxrt and samd platforms. Signed-off-by: Damien George --- tests/run-tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/run-tests.py b/tests/run-tests.py index 3db058a3a1..d0feb4bcd6 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1140,6 +1140,8 @@ the last matching regex is used: if args.platform == "pyboard": # run pyboard tests test_dirs += ("float", "stress", "inlineasm", "ports/stm32") + elif args.platform == "mimxrt": + test_dirs += ("float", "stress", "inlineasm") elif args.platform == "renesas-ra": test_dirs += ("float", "inlineasm", "ports/renesas-ra") elif args.platform == "rp2": @@ -1148,7 +1150,7 @@ the last matching regex is used: test_dirs += ("inlineasm",) elif args.platform == "esp32": test_dirs += ("float", "stress", "thread") - elif args.platform in ("esp8266", "minimal", "nrf"): + elif args.platform in ("esp8266", "minimal", "samd", "nrf"): test_dirs += ("float",) elif args.platform == "WiPy": # run WiPy tests