From 80616aee71afedc3c7bfb013d87d8102981aa6b2 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 6 Aug 2024 15:47:25 +1000 Subject: [PATCH] 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 --- tests/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.py b/tests/run-tests.py index e7ba0de56..83344714c 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1121,7 +1121,7 @@ the last matching regex is used: elif args.target == "rp2": test_dirs += ("float", "stress", "inlineasm", "thread", "ports/rp2") elif args.target == "esp32": - test_dirs += ("float", "thread") + test_dirs += ("float", "stress", "thread") elif args.target in ("esp8266", "minimal", "nrf"): test_dirs += ("float",) elif args.target == "wipy":