Skip to content

Commit

Permalink
tests/run-tests.py: Enable thread tests on esp32.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
projectgus authored and dpgeorge committed Jul 23, 2024
1 parent 337742f commit 46c3df0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,9 @@ def main():
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
Expand Down

0 comments on commit 46c3df0

Please sign in to comment.