tests/run-tests.py: Enable stress tests on esp32 port.

Now passing on ESP32-S3 and ESP32-C3.

This work was funded through GitHub Sponsors.

Signed-off-by: Angus Gratton <angus@redyak.com.au>
This commit is contained in:
Angus Gratton
2024-08-06 15:47:25 +10:00
committed by Damien George
parent e3955f421d
commit 80616aee71

View File

@@ -1121,7 +1121,7 @@ the last matching regex is used:
elif args.target == "rp2": elif args.target == "rp2":
test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2") test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2")
elif args.target == "esp32": elif args.target == "esp32":
test_dirs += ("float", "thread") test_dirs += ("float", "stress", "thread")
elif args.target in ("esp8266", "minimal", "nrf"): elif args.target in ("esp8266", "minimal", "nrf"):
test_dirs += ("float",) test_dirs += ("float",)
elif args.target == "wipy": elif args.target == "wipy":