Skip to content

Commit

Permalink
cleanup test
Browse files Browse the repository at this point in the history
  • Loading branch information
eendebakpt committed Aug 24, 2024
1 parent bd9d9fb commit d199600
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Lib/test/test_free_threading/test_zip.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import unittest
from threading import Thread

from test.support import threading_helper


class ZipThreading(unittest.TestCase):
@staticmethod
def work(enum):
while True:
try:
next(enum)
except StopIteration:
break

@threading_helper.reap_threads
@threading_helper.requires_working_threading()
def test_threading(self):
number_of_threads = 8
number_of_iterations = 40
n = 40_000
enum = zip(range(n), range(n))
for _ in range(number_of_iterations):
worker_threads = []
for ii in range(number_of_threads):
worker_threads.append(
Thread(
target=self.work,
args=[
enum,
],
)
)
_ = [t.start() for t in worker_threads]
_ = [t.join() for t in worker_threads]


if __name__ == "__main__":
unittest.main()

0 comments on commit d199600

Please sign in to comment.