stress_aes: Bump max thread count down.

This test is flaky on GitHub CI in the sanitize_undefined build.
This build adds extra runtime overhead, but there's not a simple
way to test for its presence at runtime from micropython. So, just
bump the top spec thread count down globally.

Signed-off-by: Jeff Epler <jepler@gmail.com>
This commit is contained in:
Jeff Epler 2025-06-24 18:43:25 +02:00
parent ec1036fa89
commit f13bc83714

View file

@ -277,7 +277,7 @@ if __name__ == "__main__":
n_thread = 2
n_loop = 2
else:
n_thread = 20
n_thread = 12
n_loop = 5
for i in range(n_thread):
_thread.start_new_thread(thread_entry, (n_loop,))