with open(os_helper.TESTFN, 'wb') as f:
# synchronize the subprocess
start_time = time.monotonic()
- for _ in support.sleeping_retry(60.0, error=False):
+ for _ in support.sleeping_retry(support.LONG_TIMEOUT, error=False):
try:
lock_func(f, fcntl.LOCK_EX | fcntl.LOCK_NB)
lock_func(f, fcntl.LOCK_UN)
# BaseManager.shutdown_timeout
SHUTDOWN_TIMEOUT = support.SHORT_TIMEOUT
+WAIT_ACTIVE_CHILDREN_TIMEOUT = 5.0
+
HAVE_GETVALUE = not getattr(_multiprocessing,
'HAVE_BROKEN_SEM_GETVALUE', False)
# if there are other children too (see #17395).
join_process(self.proc)
+ timeout = WAIT_ACTIVE_CHILDREN_TIMEOUT
start_time = time.monotonic()
- for _ in support.sleeping_retry(5.0, error=False):
+ for _ in support.sleeping_retry(timeout, error=False):
if len(multiprocessing.active_children()) <= 1:
break
else:
# only the manager process should be returned by active_children()
# but this can take a bit on slow machines, so wait a few seconds
# if there are other children too (see #17395)
+ timeout = WAIT_ACTIVE_CHILDREN_TIMEOUT
start_time = time.monotonic()
- for _ in support.sleeping_retry(5.0, error=False):
+ for _ in support.sleeping_retry(timeout, error=False):
if len(multiprocessing.active_children()) <= 1:
break
else:
pass
else:
n = 200
- for _ in support.busy_retry(3.0, error=False):
+ for _ in support.busy_retry(support.SHORT_TIMEOUT, error=False):
r, w, e = select.select([conn], [], [], 0.1)
if r:
n -= 1
future.result()
# At some point, the executor should break
- for _ in support.sleeping_retry(5, "executor not broken"):
+ for _ in support.sleeping_retry(support.SHORT_TIMEOUT,
+ "executor not broken"):
if self.executor._broken:
break
pool.map_async(f, [1, 2, 3], callback=results.extend)
# up to 1 min to report the results
- for _ in support.sleeping_retry(60, "Timed out waiting for results"):
+ for _ in support.sleeping_retry(support.LONG_TIMEOUT,
+ "Timed out waiting for results"):
if results:
break
with Pool(5) as pool:
pool.map_async(int, [1, 4, 9], callback=results.extend)
# up to 1 min to report the results
- for _ in support.sleeping_retry(60, "Timed out waiting for results"):
+ for _ in support.sleeping_retry(support.LONG_TIMEOUT,
+ "Timed out waiting for results"):
if results:
break
signal.signal(signal.SIGVTALRM, self.sig_vtalrm)
signal.setitimer(self.itimer, 0.3, 0.2)
- for _ in support.busy_retry(60.0, error=False):
+ for _ in support.busy_retry(support.LONG_TIMEOUT, error=False):
# use up some virtual time by doing real work
_ = pow(12345, 67890, 10000019)
if signal.getitimer(self.itimer) == (0.0, 0.0):
signal.signal(signal.SIGPROF, self.sig_prof)
signal.setitimer(self.itimer, 0.2, 0.2)
- for _ in support.busy_retry(60.0, error=False):
+ for _ in support.busy_retry(support.LONG_TIMEOUT, error=False):
# do some work
_ = pow(12345, 67890, 10000019)
if signal.getitimer(self.itimer) == (0.0, 0.0):