Fix threadpool test premature end on some platforms
This commit is contained in:
parent
1935a69c04
commit
c8214bf3ea
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class TestThreadPool:
|
||||||
events.append("S")
|
events.append("S")
|
||||||
out = 0
|
out = 0
|
||||||
for i in range(10000000):
|
for i in range(10000000):
|
||||||
if i == 5000000:
|
if i == 1000000:
|
||||||
events.append("M")
|
events.append("M")
|
||||||
out += 1
|
out += 1
|
||||||
events.append("D")
|
events.append("D")
|
||||||
|
|
Loading…
Reference in a new issue