From 46c3df0229c81d5a6274e57315558404273b2fae Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 17 Jul 2024 16:28:20 +1000 Subject: [PATCH] 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 --- 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 a6caff7bbd..e80d5b4633 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