summaryrefslogtreecommitdiff
path: root/lib/parallel.py
diff options
context:
space:
mode:
authorDavid James <davidjames@chromium.org>2013-03-05 10:50:52 -0800
committerChromeBot <chrome-bot@google.com>2013-03-05 16:13:20 -0800
commit2c335b5ecf95f58f680788cc2b9bc4d3ad911325 (patch)
tree438844b4c0c812c42ce6c3e07e8823a53ff9f787 /lib/parallel.py
parent7b0b2d63a7b4eb20feb1775f3391d6755855335e (diff)
downloadchromite-2c335b5ecf95f58f680788cc2b9bc4d3ad911325.tar.gz
Fix hang in parallel_unittest.
BUG=chromium-os:39565 TEST=./run_tests Change-Id: I0961ef4bdd9e0ceb19934520cc1d9bc901840617 Reviewed-on: https://gerrit.chromium.org/gerrit/44657 Commit-Queue: David James <davidjames@chromium.org> Tested-by: David James <davidjames@chromium.org> Reviewed-by: Ryan Cui <rcui@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org>
Diffstat (limited to 'lib/parallel.py')
-rw-r--r--lib/parallel.py34
1 files changed, 18 insertions, 16 deletions
diff --git a/lib/parallel.py b/lib/parallel.py
index 1e1cd594a..bdb4b1333 100644
--- a/lib/parallel.py
+++ b/lib/parallel.py
@@ -6,6 +6,7 @@
import collections
import contextlib
+import errno
import functools
import multiprocessing
import os
@@ -52,19 +53,22 @@ class _BackgroundSteps(multiprocessing.Process):
output = tempfile.NamedTemporaryFile(delete=False, bufsize=0)
self._steps.append((step, output))
- def WaitForStartup(self):
- """Wait for the process to start up."""
+ def Kill(self):
+ """Kill a running task."""
self._started.wait()
+ # Kill the children nicely with a KeyboardInterrupt.
+ try:
+ os.kill(self.pid, signal.SIGINT)
+ except OSError as ex:
+ if ex.errno != errno.ESRCH:
+ raise
- def WaitForStep(self, silent=False):
+ def WaitForStep(self):
"""Wait for the next step to complete.
Output from the step is printed as the step runs.
If an exception occurs, return a string containing the traceback.
-
- Arguments:
- silent: If True, squelch all output from the step.
"""
assert not self.Empty()
_step, output = self._steps.popleft()
@@ -92,8 +96,7 @@ class _BackgroundSteps(multiprocessing.Process):
output.seek(pos)
buf = output.read(_BUFSIZE)
while len(buf) > 0:
- if not silent:
- sys.stdout.write(buf)
+ sys.stdout.write(buf)
pos += len(buf)
if len(buf) < _BUFSIZE:
break
@@ -219,14 +222,13 @@ def _ParallelSteps(steps, max_parallel=None, halt_on_error=False):
tracebacks = []
for bg in bg_steps:
while not bg.Empty():
- halt = tracebacks and halt_on_error
- if halt:
- # Kill the children nicely with a KeyboardInterrupt.
- bg.WaitForStartup()
- os.kill(bg.pid, signal.SIGINT)
- error = bg.WaitForStep(silent=halt)
- if not halt and error is not None:
- tracebacks.append(error)
+ if tracebacks and halt_on_error:
+ bg.Kill()
+ break
+ else:
+ error = bg.WaitForStep()
+ if error is not None:
+ tracebacks.append(error)
bg.join()
# Propagate any exceptions.