diff options
| author | Angus Gratton <angus@redyak.com.au> | 2024-07-17 16:28:20 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-07-23 12:34:14 +1000 |
| commit | 46c3df0229c81d5a6274e57315558404273b2fae (patch) | |
| tree | 79998728b586b3cb84ff1e621492bd1a459eb280 | |
| parent | 337742f6c70a7b9d407df687774bb9c9cc6a1656 (diff) | |
tests/run-tests.py: Enable thread tests on esp32.
Before the fix in parent commit, some of these tests hung indefinitely.
After, they seem to consistently pass.
This work was funded through GitHub Sponsors.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
| -rwxr-xr-x | tests/run-tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index a6caff7bb..e80d5b463 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1121,7 +1121,9 @@ the last matching regex is used: test_dirs += ("float", "inlineasm", "ports/renesas-ra") elif args.target == "rp2": test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2") - elif args.target in ("esp8266", "esp32", "minimal", "nrf"): + elif args.target == "esp32": + test_dirs += ("float", "thread") + elif args.target in ("esp8266", "minimal", "nrf"): test_dirs += ("float",) elif args.target == "wipy": # run WiPy tests |
