Skip to content
Snippets Groups Projects
Commit 06a12ada authored by Damien George's avatar Damien George
Browse files

tests/thread: Add stress-test for creating many threads.

parent 2847d743
No related branches found
No related tags found
No related merge requests found
# stress test for creating many threads
try:
import utime as time
except ImportError:
import time
import _thread
def thread_entry(n):
pass
thread_num = 0
while thread_num < 500:
try:
_thread.start_new_thread(thread_entry, (thread_num,))
thread_num += 1
except MemoryError:
pass
# wait for the last threads to terminate
time.sleep(1)
print('done')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment