|
|
import multiprocessing |
|
|
import os |
|
|
import time |
|
|
|
|
|
import lit.Test |
|
|
import lit.util |
|
|
import lit.worker |
|
|
|
|
|
|
|
|
class MaxFailuresError(Exception): |
|
|
pass |
|
|
|
|
|
|
|
|
class TimeoutError(Exception): |
|
|
pass |
|
|
|
|
|
|
|
|
class Run(object): |
|
|
"""A concrete, configured testing run.""" |
|
|
|
|
|
def __init__( |
|
|
self, tests, lit_config, workers, progress_callback, max_failures, timeout |
|
|
): |
|
|
self.tests = tests |
|
|
self.lit_config = lit_config |
|
|
self.workers = workers |
|
|
self.progress_callback = progress_callback |
|
|
self.max_failures = max_failures |
|
|
self.timeout = timeout |
|
|
assert workers > 0 |
|
|
|
|
|
def execute(self): |
|
|
""" |
|
|
Execute the tests in the run using up to the specified number of |
|
|
parallel tasks, and inform the caller of each individual result. The |
|
|
provided tests should be a subset of the tests available in this run |
|
|
object. |
|
|
|
|
|
The progress_callback will be invoked for each completed test. |
|
|
|
|
|
If timeout is non-None, it should be a time in seconds after which to |
|
|
stop executing tests. |
|
|
|
|
|
Returns the elapsed testing time. |
|
|
|
|
|
Upon completion, each test in the run will have its result |
|
|
computed. Tests which were not actually executed (for any reason) will |
|
|
be marked SKIPPED. |
|
|
""" |
|
|
self.failures = 0 |
|
|
|
|
|
|
|
|
one_week = 7 * 24 * 60 * 60 |
|
|
timeout = self.timeout or one_week |
|
|
deadline = time.time() + timeout |
|
|
|
|
|
try: |
|
|
self._execute(deadline) |
|
|
finally: |
|
|
skipped = lit.Test.Result(lit.Test.SKIPPED) |
|
|
for test in self.tests: |
|
|
if test.result is None: |
|
|
test.setResult(skipped) |
|
|
|
|
|
def _execute(self, deadline): |
|
|
self._increase_process_limit() |
|
|
|
|
|
semaphores = { |
|
|
k: multiprocessing.BoundedSemaphore(v) |
|
|
for k, v in self.lit_config.parallelism_groups.items() |
|
|
if v is not None |
|
|
} |
|
|
|
|
|
pool = multiprocessing.Pool( |
|
|
self.workers, lit.worker.initialize, (self.lit_config, semaphores) |
|
|
) |
|
|
|
|
|
async_results = [ |
|
|
pool.apply_async( |
|
|
lit.worker.execute, args=[test], callback=self.progress_callback |
|
|
) |
|
|
for test in self.tests |
|
|
] |
|
|
pool.close() |
|
|
|
|
|
try: |
|
|
self._wait_for(async_results, deadline) |
|
|
except: |
|
|
pool.terminate() |
|
|
raise |
|
|
finally: |
|
|
pool.join() |
|
|
|
|
|
def _wait_for(self, async_results, deadline): |
|
|
timeout = deadline - time.time() |
|
|
for idx, ar in enumerate(async_results): |
|
|
try: |
|
|
test = ar.get(timeout) |
|
|
except multiprocessing.TimeoutError: |
|
|
raise TimeoutError() |
|
|
else: |
|
|
self._update_test(self.tests[idx], test) |
|
|
if test.isFailure(): |
|
|
self.failures += 1 |
|
|
if self.failures == self.max_failures: |
|
|
raise MaxFailuresError() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _update_test(self, local_test, remote_test): |
|
|
|
|
|
local_test.requires = remote_test.requires |
|
|
local_test.result = remote_test.result |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _increase_process_limit(self): |
|
|
ncpus = lit.util.usable_core_count() |
|
|
desired_limit = self.workers * ncpus * 2 |
|
|
|
|
|
|
|
|
try: |
|
|
import resource |
|
|
|
|
|
NPROC = resource.RLIMIT_NPROC |
|
|
|
|
|
soft_limit, hard_limit = resource.getrlimit(NPROC) |
|
|
desired_limit = min(desired_limit, hard_limit) |
|
|
|
|
|
if soft_limit < desired_limit: |
|
|
resource.setrlimit(NPROC, (desired_limit, hard_limit)) |
|
|
self.lit_config.note( |
|
|
"Raised process limit from %d to %d" % (soft_limit, desired_limit) |
|
|
) |
|
|
except Exception as ex: |
|
|
|
|
|
if os.name != "nt": |
|
|
self.lit_config.warning("Failed to raise process limit: %s" % ex) |
|
|
|