]> granicus.if.org Git - python/commitdiff
Further increase tolerance for slow buildbots
authorNick Coghlan <ncoghlan@gmail.com>
Mon, 23 Dec 2013 08:17:20 +0000 (18:17 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Mon, 23 Dec 2013 08:17:20 +0000 (18:17 +1000)
Lib/test/test_multiprocessing_main_handling.py

index aa85a4d1e0f74cbfcffa0fc5cc4af7ae587fd69c..7ea8e7806c725363970d8ba117fe282d0b4d8c7d 100644 (file)
@@ -53,7 +53,7 @@ if __name__ == '__main__':
     p = Pool(5)
     results = []
     p.map_async(f, [1, 2, 3], callback=results.extend)
-    deadline = time.time() + 5 # up to 5 s to report the results
+    deadline = time.time() + 10 # up to 10 s to report the results
     while not results:
         time.sleep(0.05)
         if time.time() > deadline:
@@ -81,7 +81,7 @@ set_start_method(start_method)
 p = Pool(5)
 results = []
 p.map_async(int, [1, 4, 9], callback=results.extend)
-deadline = time.time() + 5 # up to 5 s to report the results
+deadline = time.time() + 10 # up to 10 s to report the results
 while not results:
     time.sleep(0.05)
     if time.time() > deadline: