From 5f650b7b7a200a32829fed4efffe606c69f0bc87 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 16 May 2022 08:47:44 +1000 Subject: [PATCH] tests/thread: Use less resources for stress_aes if settrace enabled. Signed-off-by: Damien George --- tests/thread/stress_aes.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/thread/stress_aes.py b/tests/thread/stress_aes.py index 1bf252a80..ebc84d79b 100644 --- a/tests/thread/stress_aes.py +++ b/tests/thread/stress_aes.py @@ -267,7 +267,11 @@ def thread_entry(n_loop): if __name__ == "__main__": import sys - if sys.platform == "rp2": + if hasattr(sys, "settrace"): + # Builds with sys.settrace enabled are slow, so make the test short. + n_thread = 2 + n_loop = 2 + elif sys.platform == "rp2": n_thread = 1 n_loop = 2 elif sys.platform in ("esp32", "pyboard"):