Kaydet (Commit) 1ae2998f authored tarafından Brian Quinlan's avatar Brian Quinlan

Increases some test timeouts to fix issue 11864.

üst b9c09878
...@@ -260,14 +260,14 @@ class WaitTests(unittest.TestCase): ...@@ -260,14 +260,14 @@ class WaitTests(unittest.TestCase):
def test_timeout(self): def test_timeout(self):
future1 = self.executor.submit(mul, 6, 7) future1 = self.executor.submit(mul, 6, 7)
future2 = self.executor.submit(time.sleep, 3) future2 = self.executor.submit(time.sleep, 6)
finished, pending = futures.wait( finished, pending = futures.wait(
[CANCELLED_AND_NOTIFIED_FUTURE, [CANCELLED_AND_NOTIFIED_FUTURE,
EXCEPTION_FUTURE, EXCEPTION_FUTURE,
SUCCESSFUL_FUTURE, SUCCESSFUL_FUTURE,
future1, future2], future1, future2],
timeout=1.5, timeout=5,
return_when=futures.ALL_COMPLETED) return_when=futures.ALL_COMPLETED)
self.assertEqual(set([CANCELLED_AND_NOTIFIED_FUTURE, self.assertEqual(set([CANCELLED_AND_NOTIFIED_FUTURE,
...@@ -357,8 +357,8 @@ class ExecutorTest(unittest.TestCase): ...@@ -357,8 +357,8 @@ class ExecutorTest(unittest.TestCase):
results = [] results = []
try: try:
for i in self.executor.map(time.sleep, for i in self.executor.map(time.sleep,
[0, 0, 3], [0, 0, 6],
timeout=1.5): timeout=5):
results.append(i) results.append(i)
except futures.TimeoutError: except futures.TimeoutError:
pass pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment