Clear alarms in jobset.py when finished running jobs

pull/11520/head
Matt Kwong 8 years ago
parent 8961a10ca1
commit 60a672b87f
  1. 2
      tools/run_tests/python_utils/jobset.py

@ -473,6 +473,8 @@ class Jobset(object):
while self._running:
if self.cancelled(): pass # poll cancellation
self.reap()
if platform_string() != 'windows':
signal.alarm(0)
return not self.cancelled() and self._failures == 0

Loading…
Cancel
Save