summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-01-18 16:32:31 +1100
committerDamien George <damien@micropython.org>2024-01-22 11:48:27 +1100
commit7bbcee3cf09a08199b3ffefb6c5e37208cba5f0a (patch)
tree6260794d34aaef18fcf5a6521ff3d103bc962dbf /tests/run-tests.py
parentf93ffc2875c57ce3b8a608ebf5ae9050aa62f069 (diff)
tests: Move port-specific test directories into tests/ports/ directory.
To keep them all together, mirroring the top-level directory structure. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 4d4c2543b..39f2d73a2 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -183,7 +183,7 @@ special_tests = [
"basics/bytes_compare3.py",
"basics/builtin_help.py",
"thread/thread_exc2.py",
- "esp32/partition_ota.py",
+ "ports/esp32/partition_ota.py",
)
]
@@ -1036,16 +1036,16 @@ the last matching regex is used:
)
if args.target == "pyboard":
# run pyboard tests
- test_dirs += ("float", "stress", "pyb", "inlineasm")
+ test_dirs += ("float", "stress", "inlineasm", "ports/stm32")
elif args.target in ("renesas-ra"):
- test_dirs += ("float", "inlineasm", "renesas-ra")
+ test_dirs += ("float", "inlineasm", "ports/renesas-ra")
elif args.target == "rp2":
test_dirs += ("float", "stress", "inlineasm", "thread")
elif args.target in ("esp8266", "esp32", "minimal", "nrf"):
test_dirs += ("float",)
elif args.target == "wipy":
# run WiPy tests
- test_dirs += ("wipy",)
+ test_dirs += ("ports/cc3200",)
elif args.target == "unix":
# run PC tests
test_dirs += (
@@ -1054,8 +1054,8 @@ the last matching regex is used:
"io",
"stress",
"unicode",
- "unix",
"cmdline",
+ "ports/unix",
)
elif args.target == "qemu-arm":
if not args.write_exp:
@@ -1065,7 +1065,7 @@ the last matching regex is used:
test_dirs += (
"float",
"inlineasm",
- "qemu-arm",
+ "ports/qemu-arm",
)
else:
# run tests from these directories