2019-04-25 23:08:53 -03:00
|
|
|
import collections
|
2016-03-22 22:04:32 -03:00
|
|
|
import faulthandler
|
2015-09-29 18:15:38 -03:00
|
|
|
import json
|
|
|
|
import os
|
2015-09-29 22:05:43 -03:00
|
|
|
import queue
|
2019-10-18 10:49:08 -03:00
|
|
|
import signal
|
2019-04-26 03:40:25 -03:00
|
|
|
import subprocess
|
2015-09-29 18:15:38 -03:00
|
|
|
import sys
|
2017-09-07 13:56:24 -03:00
|
|
|
import threading
|
2015-09-29 19:33:29 -03:00
|
|
|
import time
|
2019-04-26 03:40:25 -03:00
|
|
|
import traceback
|
2015-09-29 20:32:39 -03:00
|
|
|
import types
|
2015-09-29 18:15:38 -03:00
|
|
|
from test import support
|
2020-06-30 10:46:06 -03:00
|
|
|
from test.support import os_helper
|
2015-09-29 18:15:38 -03:00
|
|
|
|
2016-03-23 08:14:10 -03:00
|
|
|
from test.libregrtest.runtest import (
|
2016-05-20 08:37:40 -03:00
|
|
|
runtest, INTERRUPTED, CHILD_ERROR, PROGRESS_MIN_TIME,
|
2019-08-14 09:18:51 -03:00
|
|
|
format_test_result, TestResult, is_failed, TIMEOUT)
|
2015-09-29 21:17:28 -03:00
|
|
|
from test.libregrtest.setup import setup_tests
|
2019-10-01 07:29:36 -03:00
|
|
|
from test.libregrtest.utils import format_duration, print_warning
|
2015-09-29 18:15:38 -03:00
|
|
|
|
|
|
|
|
2015-09-29 22:05:43 -03:00
|
|
|
# Display the running tests if nothing happened last N seconds
|
2015-11-04 04:03:53 -04:00
|
|
|
PROGRESS_UPDATE = 30.0 # seconds
|
2019-09-17 05:08:19 -03:00
|
|
|
assert PROGRESS_UPDATE >= PROGRESS_MIN_TIME
|
2015-09-29 22:05:43 -03:00
|
|
|
|
2019-10-08 13:45:43 -03:00
|
|
|
# Kill the main process after 5 minutes. It is supposed to write an update
|
|
|
|
# every PROGRESS_UPDATE seconds. Tolerate 5 minutes for Python slowest
|
|
|
|
# buildbot workers.
|
|
|
|
MAIN_PROCESS_TIMEOUT = 5 * 60.0
|
|
|
|
assert MAIN_PROCESS_TIMEOUT >= PROGRESS_UPDATE
|
|
|
|
|
2019-05-13 22:47:32 -03:00
|
|
|
# Time to wait until a worker completes: should be immediate
|
|
|
|
JOIN_TIMEOUT = 30.0 # seconds
|
|
|
|
|
2019-10-18 10:49:08 -03:00
|
|
|
USE_PROCESS_GROUP = (hasattr(os, "setsid") and hasattr(os, "killpg"))
|
|
|
|
|
2016-03-24 08:04:15 -03:00
|
|
|
|
2019-05-13 14:17:54 -03:00
|
|
|
def must_stop(result, ns):
|
|
|
|
if result.result == INTERRUPTED:
|
|
|
|
return True
|
|
|
|
if ns.failfast and is_failed(result, ns):
|
|
|
|
return True
|
|
|
|
return False
|
2015-09-29 19:33:29 -03:00
|
|
|
|
|
|
|
|
2019-05-14 10:49:16 -03:00
|
|
|
def parse_worker_args(worker_args):
|
|
|
|
ns_dict, test_name = json.loads(worker_args)
|
|
|
|
ns = types.SimpleNamespace(**ns_dict)
|
|
|
|
return (ns, test_name)
|
|
|
|
|
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
def run_test_in_subprocess(testname, ns):
|
2015-09-29 20:32:39 -03:00
|
|
|
ns_dict = vars(ns)
|
2018-09-07 12:20:42 -03:00
|
|
|
worker_args = (ns_dict, testname)
|
|
|
|
worker_args = json.dumps(worker_args)
|
2015-09-29 19:33:29 -03:00
|
|
|
|
|
|
|
cmd = [sys.executable, *support.args_from_interpreter_flags(),
|
2016-09-21 12:12:50 -03:00
|
|
|
'-u', # Unbuffered stdout and stderr
|
2015-09-29 19:33:29 -03:00
|
|
|
'-m', 'test.regrtest',
|
2018-09-07 12:20:42 -03:00
|
|
|
'--worker-args', worker_args]
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2015-09-29 18:15:38 -03:00
|
|
|
# Running the child from the same working directory as regrtest's original
|
|
|
|
# invocation ensures that TEMPDIR for the child is the same when
|
|
|
|
# sysconfig.is_python_build() is true. See issue 15300.
|
2019-10-18 10:49:08 -03:00
|
|
|
kw = {}
|
|
|
|
if USE_PROCESS_GROUP:
|
|
|
|
kw['start_new_session'] = True
|
2019-04-26 03:40:25 -03:00
|
|
|
return subprocess.Popen(cmd,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
universal_newlines=True,
|
|
|
|
close_fds=(os.name != 'nt'),
|
2020-06-30 10:46:06 -03:00
|
|
|
cwd=os_helper.SAVEDCWD,
|
2019-10-18 10:49:08 -03:00
|
|
|
**kw)
|
2015-09-29 18:15:38 -03:00
|
|
|
|
|
|
|
|
2019-05-14 10:49:16 -03:00
|
|
|
def run_tests_worker(ns, test_name):
|
2015-09-29 21:17:28 -03:00
|
|
|
setup_tests(ns)
|
2015-09-29 20:32:39 -03:00
|
|
|
|
2019-05-14 10:49:16 -03:00
|
|
|
result = runtest(ns, test_name)
|
|
|
|
|
2015-09-29 18:15:38 -03:00
|
|
|
print() # Force a newline (just in case)
|
2019-05-14 10:49:16 -03:00
|
|
|
|
|
|
|
# Serialize TestResult as list in JSON
|
|
|
|
print(json.dumps(list(result)), flush=True)
|
2015-09-29 18:15:38 -03:00
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
|
|
|
# We do not use a generator so multiple threads can call next().
|
|
|
|
class MultiprocessIterator:
|
|
|
|
|
|
|
|
"""A thread-safe iterator over tests for multiprocess mode."""
|
|
|
|
|
2019-05-13 14:17:54 -03:00
|
|
|
def __init__(self, tests_iter):
|
2015-09-29 18:15:38 -03:00
|
|
|
self.lock = threading.Lock()
|
2019-05-13 14:17:54 -03:00
|
|
|
self.tests_iter = tests_iter
|
2015-09-29 18:15:38 -03:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __next__(self):
|
|
|
|
with self.lock:
|
2019-05-13 14:17:54 -03:00
|
|
|
if self.tests_iter is None:
|
|
|
|
raise StopIteration
|
|
|
|
return next(self.tests_iter)
|
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
with self.lock:
|
|
|
|
self.tests_iter = None
|
2015-09-29 18:15:38 -03:00
|
|
|
|
|
|
|
|
2019-04-25 23:08:53 -03:00
|
|
|
MultiprocessResult = collections.namedtuple('MultiprocessResult',
|
|
|
|
'result stdout stderr error_msg')
|
|
|
|
|
2019-05-13 22:47:32 -03:00
|
|
|
class ExitThread(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
class TestWorkerProcess(threading.Thread):
|
2019-10-03 11:15:16 -03:00
|
|
|
def __init__(self, worker_id, runner):
|
2015-09-29 18:15:38 -03:00
|
|
|
super().__init__()
|
2019-10-01 07:29:36 -03:00
|
|
|
self.worker_id = worker_id
|
2019-10-03 11:15:16 -03:00
|
|
|
self.pending = runner.pending
|
|
|
|
self.output = runner.output
|
|
|
|
self.ns = runner.ns
|
|
|
|
self.timeout = runner.worker_timeout
|
|
|
|
self.regrtest = runner.regrtest
|
2019-04-25 23:08:53 -03:00
|
|
|
self.current_test_name = None
|
2015-09-29 19:33:29 -03:00
|
|
|
self.start_time = None
|
2019-04-26 03:40:25 -03:00
|
|
|
self._popen = None
|
2019-05-13 22:47:32 -03:00
|
|
|
self._killed = False
|
2019-10-01 07:29:36 -03:00
|
|
|
self._stopped = False
|
2019-05-13 22:47:32 -03:00
|
|
|
|
|
|
|
def __repr__(self):
|
2019-10-01 07:29:36 -03:00
|
|
|
info = [f'TestWorkerProcess #{self.worker_id}']
|
2019-05-13 22:47:32 -03:00
|
|
|
if self.is_alive():
|
2019-10-02 08:35:11 -03:00
|
|
|
info.append("running")
|
2019-10-01 07:29:36 -03:00
|
|
|
else:
|
|
|
|
info.append('stopped')
|
|
|
|
test = self.current_test_name
|
2019-05-13 22:47:32 -03:00
|
|
|
if test:
|
|
|
|
info.append(f'test={test}')
|
|
|
|
popen = self._popen
|
2019-10-02 08:35:11 -03:00
|
|
|
if popen is not None:
|
|
|
|
dt = time.monotonic() - self.start_time
|
|
|
|
info.extend((f'pid={self._popen.pid}',
|
|
|
|
f'time={format_duration(dt)}'))
|
2019-05-13 22:47:32 -03:00
|
|
|
return '<%s>' % ' '.join(info)
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2019-08-21 06:59:20 -03:00
|
|
|
def _kill(self):
|
|
|
|
popen = self._popen
|
2019-10-01 07:29:36 -03:00
|
|
|
if popen is None:
|
|
|
|
return
|
2019-08-21 06:59:20 -03:00
|
|
|
|
2019-10-02 08:35:11 -03:00
|
|
|
if self._killed:
|
|
|
|
return
|
|
|
|
self._killed = True
|
|
|
|
|
2019-10-18 10:49:08 -03:00
|
|
|
if USE_PROCESS_GROUP:
|
|
|
|
what = f"{self} process group"
|
|
|
|
else:
|
|
|
|
what = f"{self}"
|
|
|
|
|
|
|
|
print(f"Kill {what}", file=sys.stderr, flush=True)
|
2019-08-21 06:59:20 -03:00
|
|
|
try:
|
2019-10-18 10:49:08 -03:00
|
|
|
if USE_PROCESS_GROUP:
|
|
|
|
os.killpg(popen.pid, signal.SIGKILL)
|
|
|
|
else:
|
|
|
|
popen.kill()
|
2019-10-16 19:29:12 -03:00
|
|
|
except ProcessLookupError:
|
2019-10-18 10:49:08 -03:00
|
|
|
# popen.kill(): the process completed, the TestWorkerProcess thread
|
|
|
|
# read its exit status, but Popen.send_signal() read the returncode
|
|
|
|
# just before Popen.wait() set returncode.
|
2019-10-16 19:29:12 -03:00
|
|
|
pass
|
2019-08-21 06:59:20 -03:00
|
|
|
except OSError as exc:
|
2019-10-18 10:49:08 -03:00
|
|
|
print_warning(f"Failed to kill {what}: {exc!r}")
|
2019-08-21 06:59:20 -03:00
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
def stop(self):
|
|
|
|
# Method called from a different thread to stop this thread
|
|
|
|
self._stopped = True
|
|
|
|
self._kill()
|
2019-08-14 09:18:51 -03:00
|
|
|
|
|
|
|
def mp_result_error(self, test_name, error_type, stdout='', stderr='',
|
|
|
|
err_msg=None):
|
|
|
|
test_time = time.monotonic() - self.start_time
|
|
|
|
result = TestResult(test_name, error_type, test_time, None)
|
|
|
|
return MultiprocessResult(result, stdout, stderr, err_msg)
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
def _run_process(self, test_name):
|
|
|
|
self.start_time = time.monotonic()
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
self.current_test_name = test_name
|
|
|
|
try:
|
2019-10-02 08:35:11 -03:00
|
|
|
popen = run_test_in_subprocess(test_name, self.ns)
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
self._killed = False
|
2019-10-02 08:35:11 -03:00
|
|
|
self._popen = popen
|
2019-10-01 07:29:36 -03:00
|
|
|
except:
|
|
|
|
self.current_test_name = None
|
|
|
|
raise
|
|
|
|
|
|
|
|
try:
|
|
|
|
if self._stopped:
|
|
|
|
# If kill() has been called before self._popen is set,
|
|
|
|
# self._popen is still running. Call again kill()
|
|
|
|
# to ensure that the process is killed.
|
|
|
|
self._kill()
|
|
|
|
raise ExitThread
|
|
|
|
|
2019-08-21 06:59:20 -03:00
|
|
|
try:
|
2019-10-01 07:29:36 -03:00
|
|
|
stdout, stderr = popen.communicate(timeout=self.timeout)
|
2019-10-08 13:45:43 -03:00
|
|
|
retcode = popen.returncode
|
|
|
|
assert retcode is not None
|
2019-10-01 07:29:36 -03:00
|
|
|
except subprocess.TimeoutExpired:
|
|
|
|
if self._stopped:
|
|
|
|
# kill() has been called: communicate() fails
|
|
|
|
# on reading closed stdout/stderr
|
|
|
|
raise ExitThread
|
|
|
|
|
2019-10-08 13:45:43 -03:00
|
|
|
# On timeout, kill the process
|
|
|
|
self._kill()
|
|
|
|
|
|
|
|
# None means TIMEOUT for the caller
|
|
|
|
retcode = None
|
|
|
|
# bpo-38207: Don't attempt to call communicate() again: on it
|
|
|
|
# can hang until all child processes using stdout and stderr
|
|
|
|
# pipes completes.
|
|
|
|
stdout = stderr = ''
|
2019-10-01 07:29:36 -03:00
|
|
|
except OSError:
|
|
|
|
if self._stopped:
|
|
|
|
# kill() has been called: communicate() fails
|
|
|
|
# on reading closed stdout/stderr
|
|
|
|
raise ExitThread
|
|
|
|
raise
|
2019-10-08 13:45:43 -03:00
|
|
|
else:
|
|
|
|
stdout = stdout.strip()
|
|
|
|
stderr = stderr.rstrip()
|
2019-10-01 07:29:36 -03:00
|
|
|
|
|
|
|
return (retcode, stdout, stderr)
|
|
|
|
except:
|
|
|
|
self._kill()
|
|
|
|
raise
|
2015-09-29 19:33:29 -03:00
|
|
|
finally:
|
2019-10-01 07:29:36 -03:00
|
|
|
self._wait_completed()
|
2019-04-26 03:40:25 -03:00
|
|
|
self._popen = None
|
2019-10-01 07:29:36 -03:00
|
|
|
self.current_test_name = None
|
|
|
|
|
|
|
|
def _runtest(self, test_name):
|
2019-10-08 13:45:43 -03:00
|
|
|
retcode, stdout, stderr = self._run_process(test_name)
|
2019-10-01 07:29:36 -03:00
|
|
|
|
2019-10-08 13:45:43 -03:00
|
|
|
if retcode is None:
|
|
|
|
return self.mp_result_error(test_name, TIMEOUT, stdout, stderr)
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
err_msg = None
|
2015-09-29 19:33:29 -03:00
|
|
|
if retcode != 0:
|
2019-04-26 03:40:25 -03:00
|
|
|
err_msg = "Exit code %s" % retcode
|
|
|
|
else:
|
|
|
|
stdout, _, result = stdout.rpartition("\n")
|
|
|
|
stdout = stdout.rstrip()
|
|
|
|
if not result:
|
|
|
|
err_msg = "Failed to parse worker stdout"
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
# deserialize run_tests_worker() output
|
|
|
|
result = json.loads(result)
|
|
|
|
result = TestResult(*result)
|
|
|
|
except Exception as exc:
|
|
|
|
err_msg = "Failed to parse worker JSON: %s" % exc
|
|
|
|
|
|
|
|
if err_msg is not None:
|
2019-10-08 13:45:43 -03:00
|
|
|
return self.mp_result_error(test_name, CHILD_ERROR,
|
|
|
|
stdout, stderr, err_msg)
|
2015-09-29 19:33:29 -03:00
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
return MultiprocessResult(result, stdout, stderr, err_msg)
|
2015-09-29 18:15:38 -03:00
|
|
|
|
|
|
|
def run(self):
|
2019-10-01 07:29:36 -03:00
|
|
|
while not self._stopped:
|
2019-04-26 03:40:25 -03:00
|
|
|
try:
|
|
|
|
try:
|
|
|
|
test_name = next(self.pending)
|
|
|
|
except StopIteration:
|
|
|
|
break
|
2015-09-29 18:15:38 -03:00
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
mp_result = self._runtest(test_name)
|
|
|
|
self.output.put((False, mp_result))
|
2015-09-29 18:15:38 -03:00
|
|
|
|
2019-05-13 14:17:54 -03:00
|
|
|
if must_stop(mp_result.result, self.ns):
|
2019-04-26 03:40:25 -03:00
|
|
|
break
|
2019-05-13 22:47:32 -03:00
|
|
|
except ExitThread:
|
|
|
|
break
|
2019-04-26 03:40:25 -03:00
|
|
|
except BaseException:
|
|
|
|
self.output.put((True, traceback.format_exc()))
|
|
|
|
break
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
def _wait_completed(self):
|
|
|
|
popen = self._popen
|
|
|
|
|
|
|
|
# stdout and stderr must be closed to ensure that communicate()
|
|
|
|
# does not hang
|
|
|
|
popen.stdout.close()
|
|
|
|
popen.stderr.close()
|
|
|
|
|
|
|
|
try:
|
|
|
|
popen.wait(JOIN_TIMEOUT)
|
|
|
|
except (subprocess.TimeoutExpired, OSError) as exc:
|
|
|
|
print_warning(f"Failed to wait for {self} completion "
|
|
|
|
f"(timeout={format_duration(JOIN_TIMEOUT)}): "
|
|
|
|
f"{exc!r}")
|
|
|
|
|
|
|
|
def wait_stopped(self, start_time):
|
2019-10-08 13:45:43 -03:00
|
|
|
# bpo-38207: MultiprocessTestRunner.stop_workers() called self.stop()
|
|
|
|
# which killed the process. Sometimes, killing the process from the
|
|
|
|
# main thread does not interrupt popen.communicate() in
|
|
|
|
# TestWorkerProcess thread. This loop with a timeout is a workaround
|
|
|
|
# for that.
|
|
|
|
#
|
|
|
|
# Moreover, if this method fails to join the thread, it is likely
|
|
|
|
# that Python will hang at exit while calling threading._shutdown()
|
|
|
|
# which tries again to join the blocked thread. Regrtest.main()
|
|
|
|
# uses EXIT_TIMEOUT to workaround this second bug.
|
2019-10-01 07:29:36 -03:00
|
|
|
while True:
|
|
|
|
# Write a message every second
|
|
|
|
self.join(1.0)
|
|
|
|
if not self.is_alive():
|
|
|
|
break
|
|
|
|
dt = time.monotonic() - start_time
|
2019-10-03 11:15:16 -03:00
|
|
|
self.regrtest.log(f"Waiting for {self} thread "
|
|
|
|
f"for {format_duration(dt)}")
|
2019-10-01 07:29:36 -03:00
|
|
|
if dt > JOIN_TIMEOUT:
|
|
|
|
print_warning(f"Failed to join {self} in {format_duration(dt)}")
|
|
|
|
break
|
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
|
|
|
|
def get_running(workers):
|
|
|
|
running = []
|
2015-09-29 18:15:38 -03:00
|
|
|
for worker in workers:
|
2019-04-26 03:40:25 -03:00
|
|
|
current_test_name = worker.current_test_name
|
|
|
|
if not current_test_name:
|
|
|
|
continue
|
|
|
|
dt = time.monotonic() - worker.start_time
|
|
|
|
if dt >= PROGRESS_MIN_TIME:
|
|
|
|
text = '%s (%s)' % (current_test_name, format_duration(dt))
|
|
|
|
running.append(text)
|
|
|
|
return running
|
|
|
|
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
class MultiprocessTestRunner:
|
2019-04-26 03:40:25 -03:00
|
|
|
def __init__(self, regrtest):
|
|
|
|
self.regrtest = regrtest
|
2019-10-03 11:15:16 -03:00
|
|
|
self.log = self.regrtest.log
|
2019-04-26 03:40:25 -03:00
|
|
|
self.ns = regrtest.ns
|
|
|
|
self.output = queue.Queue()
|
|
|
|
self.pending = MultiprocessIterator(self.regrtest.tests)
|
|
|
|
if self.ns.timeout is not None:
|
2020-04-14 13:29:44 -03:00
|
|
|
# Rely on faulthandler to kill a worker process. This timouet is
|
|
|
|
# when faulthandler fails to kill a worker process. Give a maximum
|
|
|
|
# of 5 minutes to faulthandler to kill the worker.
|
|
|
|
self.worker_timeout = min(self.ns.timeout * 1.5,
|
|
|
|
self.ns.timeout + 5 * 60)
|
2019-04-26 03:40:25 -03:00
|
|
|
else:
|
2019-08-14 09:18:51 -03:00
|
|
|
self.worker_timeout = None
|
2019-04-26 03:40:25 -03:00
|
|
|
self.workers = None
|
|
|
|
|
|
|
|
def start_workers(self):
|
2019-10-03 11:15:16 -03:00
|
|
|
self.workers = [TestWorkerProcess(index, self)
|
2019-10-01 07:29:36 -03:00
|
|
|
for index in range(1, self.ns.use_mp + 1)]
|
2020-04-14 13:29:44 -03:00
|
|
|
msg = f"Run tests in parallel using {len(self.workers)} child processes"
|
|
|
|
if self.ns.timeout:
|
|
|
|
msg += (" (timeout: %s, worker timeout: %s)"
|
|
|
|
% (format_duration(self.ns.timeout),
|
|
|
|
format_duration(self.worker_timeout)))
|
|
|
|
self.log(msg)
|
2019-04-26 03:40:25 -03:00
|
|
|
for worker in self.workers:
|
|
|
|
worker.start()
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
def stop_workers(self):
|
2019-05-13 22:47:32 -03:00
|
|
|
start_time = time.monotonic()
|
2019-04-26 03:40:25 -03:00
|
|
|
for worker in self.workers:
|
2019-10-01 07:29:36 -03:00
|
|
|
worker.stop()
|
2019-04-26 03:40:25 -03:00
|
|
|
for worker in self.workers:
|
2019-10-01 07:29:36 -03:00
|
|
|
worker.wait_stopped(start_time)
|
2019-04-26 03:40:25 -03:00
|
|
|
|
|
|
|
def _get_result(self):
|
|
|
|
if not any(worker.is_alive() for worker in self.workers):
|
|
|
|
# all worker threads are done: consume pending results
|
|
|
|
try:
|
|
|
|
return self.output.get(timeout=0)
|
|
|
|
except queue.Empty:
|
|
|
|
return None
|
|
|
|
|
2019-09-17 05:08:19 -03:00
|
|
|
use_faulthandler = (self.ns.timeout is not None)
|
|
|
|
timeout = PROGRESS_UPDATE
|
2019-04-26 03:40:25 -03:00
|
|
|
while True:
|
2019-09-17 05:08:19 -03:00
|
|
|
if use_faulthandler:
|
2019-10-08 13:45:43 -03:00
|
|
|
faulthandler.dump_traceback_later(MAIN_PROCESS_TIMEOUT,
|
|
|
|
exit=True)
|
2016-03-22 22:04:32 -03:00
|
|
|
|
2019-04-26 03:40:25 -03:00
|
|
|
# wait for a thread
|
2015-09-29 22:05:43 -03:00
|
|
|
try:
|
2019-04-26 03:40:25 -03:00
|
|
|
return self.output.get(timeout=timeout)
|
2015-09-29 22:05:43 -03:00
|
|
|
except queue.Empty:
|
2019-04-26 03:40:25 -03:00
|
|
|
pass
|
|
|
|
|
|
|
|
# display progress
|
|
|
|
running = get_running(self.workers)
|
|
|
|
if running and not self.ns.pgo:
|
2019-10-03 11:15:16 -03:00
|
|
|
self.log('running: %s' % ', '.join(running))
|
2019-04-26 03:40:25 -03:00
|
|
|
|
|
|
|
def display_result(self, mp_result):
|
|
|
|
result = mp_result.result
|
|
|
|
|
|
|
|
text = format_test_result(result)
|
|
|
|
if mp_result.error_msg is not None:
|
|
|
|
# CHILD_ERROR
|
|
|
|
text += ' (%s)' % mp_result.error_msg
|
|
|
|
elif (result.test_time >= PROGRESS_MIN_TIME and not self.ns.pgo):
|
|
|
|
text += ' (%s)' % format_duration(result.test_time)
|
|
|
|
running = get_running(self.workers)
|
|
|
|
if running and not self.ns.pgo:
|
|
|
|
text += ' -- running: %s' % ', '.join(running)
|
|
|
|
self.regrtest.display_progress(self.test_index, text)
|
|
|
|
|
|
|
|
def _process_result(self, item):
|
|
|
|
if item[0]:
|
|
|
|
# Thread got an exception
|
|
|
|
format_exc = item[1]
|
2019-10-03 11:15:16 -03:00
|
|
|
print_warning(f"regrtest worker thread failed: {format_exc}")
|
2019-04-26 03:40:25 -03:00
|
|
|
return True
|
|
|
|
|
|
|
|
self.test_index += 1
|
|
|
|
mp_result = item[1]
|
|
|
|
self.regrtest.accumulate_result(mp_result.result)
|
|
|
|
self.display_result(mp_result)
|
|
|
|
|
|
|
|
if mp_result.stdout:
|
|
|
|
print(mp_result.stdout, flush=True)
|
|
|
|
if mp_result.stderr and not self.ns.pgo:
|
|
|
|
print(mp_result.stderr, file=sys.stderr, flush=True)
|
|
|
|
|
2019-05-13 14:17:54 -03:00
|
|
|
if must_stop(mp_result.result, self.ns):
|
2019-04-26 03:40:25 -03:00
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def run_tests(self):
|
|
|
|
self.start_workers()
|
|
|
|
|
|
|
|
self.test_index = 0
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
item = self._get_result()
|
|
|
|
if item is None:
|
|
|
|
break
|
|
|
|
|
|
|
|
stop = self._process_result(item)
|
|
|
|
if stop:
|
|
|
|
break
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print()
|
|
|
|
self.regrtest.interrupted = True
|
|
|
|
finally:
|
2019-09-17 05:08:19 -03:00
|
|
|
if self.ns.timeout is not None:
|
2019-04-26 03:40:25 -03:00
|
|
|
faulthandler.cancel_dump_traceback_later()
|
|
|
|
|
2019-10-01 07:29:36 -03:00
|
|
|
# Always ensure that all worker processes are no longer
|
|
|
|
# worker when we exit this function
|
|
|
|
self.pending.stop()
|
|
|
|
self.stop_workers()
|
2019-04-26 03:40:25 -03:00
|
|
|
|
|
|
|
|
|
|
|
def run_tests_multiprocess(regrtest):
|
2019-10-01 07:29:36 -03:00
|
|
|
MultiprocessTestRunner(regrtest).run_tests()
|