-
-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd9d9fb
commit d199600
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |