diff options
author | Damien George <damien@micropython.org> | 2024-01-18 16:36:22 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-01-22 11:49:20 +1100 |
commit | 50b809c8e8bb909b2d69e91f5d2eab2e16d3636e (patch) | |
tree | 6d230ed8223848848e1f1798f855872c5ff1f685 /tests/run-tests.py | |
parent | 7bbcee3cf09a08199b3ffefb6c5e37208cba5f0a (diff) |
tests/ports/rp2: Add rp2-specific tests with a test for rp2.DMA.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 39f2d73a2..ecd49a7d7 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1040,7 +1040,7 @@ 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") + test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2") elif args.target in ("esp8266", "esp32", "minimal", "nrf"): test_dirs += ("float",) elif args.target == "wipy": |