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>
This commit is contained in:
Angus Gratton 2024-07-17 16:28:20 +10:00 committed by Damien George
parent 337742f6c7
commit 46c3df0229

View file

@ -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