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:
parent
ec1036fa89
commit
f13bc83714
1 changed files with 1 additions and 1 deletions
|
|
@ -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,))
|
||||
|
|
|
|||
Loading…
Reference in a new issue