2021-01-25 19:50:54 +01:00
|
|
|
# Class for actually running tests.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020-2021 Virtuozzo International GmbH
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
from pathlib import Path
|
|
|
|
import datetime
|
|
|
|
import time
|
|
|
|
import difflib
|
|
|
|
import subprocess
|
|
|
|
import contextlib
|
|
|
|
import json
|
|
|
|
import termios
|
2022-03-04 20:36:04 +01:00
|
|
|
import shutil
|
2021-01-25 19:50:54 +01:00
|
|
|
import sys
|
2021-12-03 13:22:23 +01:00
|
|
|
from multiprocessing import Pool
|
2021-01-25 19:50:54 +01:00
|
|
|
from contextlib import contextmanager
|
|
|
|
from typing import List, Optional, Iterator, Any, Sequence, Dict, \
|
|
|
|
ContextManager
|
|
|
|
|
|
|
|
from testenv import TestEnv
|
|
|
|
|
|
|
|
|
|
|
|
def silent_unlink(path: Path) -> None:
|
|
|
|
try:
|
|
|
|
path.unlink()
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def file_diff(file1: str, file2: str) -> List[str]:
|
|
|
|
with open(file1, encoding="utf-8") as f1, \
|
|
|
|
open(file2, encoding="utf-8") as f2:
|
|
|
|
# We want to ignore spaces at line ends. There are a lot of mess about
|
|
|
|
# it in iotests.
|
|
|
|
# TODO: fix all tests to not produce extra spaces, fix all .out files
|
|
|
|
# and use strict diff here!
|
|
|
|
seq1 = [line.rstrip() for line in f1]
|
|
|
|
seq2 = [line.rstrip() for line in f2]
|
|
|
|
res = [line.rstrip()
|
|
|
|
for line in difflib.unified_diff(seq1, seq2, file1, file2)]
|
|
|
|
return res
|
|
|
|
|
|
|
|
|
|
|
|
# We want to save current tty settings during test run,
|
|
|
|
# since an aborting qemu call may leave things screwed up.
|
|
|
|
@contextmanager
|
|
|
|
def savetty() -> Iterator[None]:
|
|
|
|
isterm = sys.stdin.isatty()
|
|
|
|
if isterm:
|
|
|
|
fd = sys.stdin.fileno()
|
|
|
|
attr = termios.tcgetattr(fd)
|
|
|
|
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
if isterm:
|
|
|
|
termios.tcsetattr(fd, termios.TCSADRAIN, attr)
|
|
|
|
|
|
|
|
|
|
|
|
class LastElapsedTime(ContextManager['LastElapsedTime']):
|
|
|
|
""" Cache for elapsed time for tests, to show it during new test run
|
|
|
|
|
|
|
|
It is safe to use get() at any time. To use update(), you must either
|
|
|
|
use it inside with-block or use save() after update().
|
|
|
|
"""
|
|
|
|
def __init__(self, cache_file: str, env: TestEnv) -> None:
|
|
|
|
self.env = env
|
|
|
|
self.cache_file = cache_file
|
|
|
|
self.cache: Dict[str, Dict[str, Dict[str, float]]]
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(cache_file, encoding="utf-8") as f:
|
|
|
|
self.cache = json.load(f)
|
|
|
|
except (OSError, ValueError):
|
|
|
|
self.cache = {}
|
|
|
|
|
|
|
|
def get(self, test: str,
|
|
|
|
default: Optional[float] = None) -> Optional[float]:
|
|
|
|
if test not in self.cache:
|
|
|
|
return default
|
|
|
|
|
|
|
|
if self.env.imgproto not in self.cache[test]:
|
|
|
|
return default
|
|
|
|
|
|
|
|
return self.cache[test][self.env.imgproto].get(self.env.imgfmt,
|
|
|
|
default)
|
|
|
|
|
|
|
|
def update(self, test: str, elapsed: float) -> None:
|
|
|
|
d = self.cache.setdefault(test, {})
|
|
|
|
d.setdefault(self.env.imgproto, {})[self.env.imgfmt] = elapsed
|
|
|
|
|
|
|
|
def save(self) -> None:
|
|
|
|
with open(self.cache_file, 'w', encoding="utf-8") as f:
|
|
|
|
json.dump(self.cache, f)
|
|
|
|
|
|
|
|
def __enter__(self) -> 'LastElapsedTime':
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None:
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
|
|
|
|
class TestResult:
|
|
|
|
def __init__(self, status: str, description: str = '',
|
|
|
|
elapsed: Optional[float] = None, diff: Sequence[str] = (),
|
|
|
|
casenotrun: str = '', interrupted: bool = False) -> None:
|
|
|
|
self.status = status
|
|
|
|
self.description = description
|
|
|
|
self.elapsed = elapsed
|
|
|
|
self.diff = diff
|
|
|
|
self.casenotrun = casenotrun
|
|
|
|
self.interrupted = interrupted
|
|
|
|
|
|
|
|
|
|
|
|
class TestRunner(ContextManager['TestRunner']):
|
2021-12-03 13:22:23 +01:00
|
|
|
shared_self = None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def proc_run_test(test: str, test_field_width: int) -> TestResult:
|
|
|
|
# We are in a subprocess, we can't change the runner object!
|
|
|
|
runner = TestRunner.shared_self
|
|
|
|
assert runner is not None
|
|
|
|
return runner.run_test(test, test_field_width, mp=True)
|
|
|
|
|
|
|
|
def run_tests_pool(self, tests: List[str],
|
|
|
|
test_field_width: int, jobs: int) -> List[TestResult]:
|
|
|
|
|
|
|
|
# passing self directly to Pool.starmap() just doesn't work, because
|
|
|
|
# it's a context manager.
|
|
|
|
assert TestRunner.shared_self is None
|
|
|
|
TestRunner.shared_self = self
|
|
|
|
|
|
|
|
with Pool(jobs) as p:
|
|
|
|
results = p.starmap(self.proc_run_test,
|
|
|
|
zip(tests, [test_field_width] * len(tests)))
|
|
|
|
|
|
|
|
TestRunner.shared_self = None
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
def __init__(self, env: TestEnv, tap: bool = False,
|
2021-01-25 19:50:54 +01:00
|
|
|
color: str = 'auto') -> None:
|
|
|
|
self.env = env
|
2022-01-07 13:18:11 +01:00
|
|
|
self.tap = tap
|
2021-01-25 19:50:54 +01:00
|
|
|
self.last_elapsed = LastElapsedTime('.last-elapsed-cache', env)
|
|
|
|
|
|
|
|
assert color in ('auto', 'on', 'off')
|
|
|
|
self.color = (color == 'on') or (color == 'auto' and
|
|
|
|
sys.stdout.isatty())
|
|
|
|
|
|
|
|
self._stack: contextlib.ExitStack
|
|
|
|
|
|
|
|
def __enter__(self) -> 'TestRunner':
|
|
|
|
self._stack = contextlib.ExitStack()
|
|
|
|
self._stack.enter_context(self.env)
|
|
|
|
self._stack.enter_context(self.last_elapsed)
|
|
|
|
self._stack.enter_context(savetty())
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type: Any, exc_value: Any, traceback: Any) -> None:
|
|
|
|
self._stack.close()
|
|
|
|
|
2021-12-10 21:14:50 +01:00
|
|
|
def test_print_one_line(self, test: str,
|
|
|
|
test_field_width: int,
|
|
|
|
starttime: str,
|
2021-01-25 19:50:54 +01:00
|
|
|
endtime: Optional[str] = None, status: str = '...',
|
|
|
|
lasttime: Optional[float] = None,
|
|
|
|
thistime: Optional[float] = None,
|
|
|
|
description: str = '',
|
|
|
|
end: str = '\n') -> None:
|
|
|
|
""" Print short test info before/after test run """
|
|
|
|
test = os.path.basename(test)
|
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if test_field_width is None:
|
|
|
|
test_field_width = 8
|
2021-01-25 19:50:54 +01:00
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if self.tap:
|
|
|
|
if status == 'pass':
|
|
|
|
print(f'ok {self.env.imgfmt} {test}')
|
|
|
|
elif status == 'fail':
|
|
|
|
print(f'not ok {self.env.imgfmt} {test}')
|
|
|
|
elif status == 'not run':
|
|
|
|
print(f'ok {self.env.imgfmt} {test} # SKIP')
|
2021-01-25 19:50:54 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
if lasttime:
|
|
|
|
lasttime_s = f' (last: {lasttime:.1f}s)'
|
|
|
|
else:
|
|
|
|
lasttime_s = ''
|
|
|
|
if thistime:
|
|
|
|
thistime_s = f'{thistime:.1f}s'
|
|
|
|
else:
|
|
|
|
thistime_s = '...'
|
|
|
|
|
|
|
|
if endtime:
|
|
|
|
endtime = f'[{endtime}]'
|
|
|
|
else:
|
|
|
|
endtime = ''
|
|
|
|
|
|
|
|
if self.color:
|
|
|
|
if status == 'pass':
|
|
|
|
col = '\033[32m'
|
|
|
|
elif status == 'fail':
|
|
|
|
col = '\033[1m\033[31m'
|
|
|
|
elif status == 'not run':
|
|
|
|
col = '\033[33m'
|
|
|
|
else:
|
|
|
|
col = ''
|
|
|
|
|
|
|
|
col_end = '\033[0m'
|
|
|
|
else:
|
|
|
|
col = ''
|
|
|
|
col_end = ''
|
|
|
|
|
|
|
|
print(f'{test:{test_field_width}} {col}{status:10}{col_end} '
|
|
|
|
f'[{starttime}] {endtime:13}{thistime_s:5} {lasttime_s:14} '
|
|
|
|
f'{description}', end=end)
|
|
|
|
|
|
|
|
def find_reference(self, test: str) -> str:
|
|
|
|
if self.env.cachemode == 'none':
|
|
|
|
ref = f'{test}.out.nocache'
|
|
|
|
if os.path.isfile(ref):
|
|
|
|
return ref
|
|
|
|
|
|
|
|
ref = f'{test}.out.{self.env.imgfmt}'
|
|
|
|
if os.path.isfile(ref):
|
|
|
|
return ref
|
|
|
|
|
|
|
|
ref = f'{test}.{self.env.qemu_default_machine}.out'
|
|
|
|
if os.path.isfile(ref):
|
|
|
|
return ref
|
|
|
|
|
|
|
|
return f'{test}.out'
|
|
|
|
|
2021-12-03 13:22:23 +01:00
|
|
|
def do_run_test(self, test: str, mp: bool) -> TestResult:
|
2021-12-03 13:22:21 +01:00
|
|
|
"""
|
|
|
|
Run one test
|
|
|
|
|
|
|
|
:param test: test file path
|
2021-12-03 13:22:23 +01:00
|
|
|
:param mp: if true, we are in a multiprocessing environment, use
|
|
|
|
personal subdirectories for test run
|
|
|
|
|
|
|
|
Note: this method may be called from subprocess, so it does not
|
|
|
|
change ``self`` object in any way!
|
2021-12-03 13:22:21 +01:00
|
|
|
"""
|
|
|
|
|
2021-01-25 19:50:54 +01:00
|
|
|
f_test = Path(test)
|
|
|
|
f_reference = Path(self.find_reference(test))
|
|
|
|
|
|
|
|
if not f_test.exists():
|
|
|
|
return TestResult(status='fail',
|
|
|
|
description=f'No such test file: {f_test}')
|
|
|
|
|
|
|
|
if not os.access(str(f_test), os.X_OK):
|
|
|
|
sys.exit(f'Not executable: {f_test}')
|
|
|
|
|
|
|
|
if not f_reference.exists():
|
|
|
|
return TestResult(status='not run',
|
|
|
|
description='No qualified output '
|
|
|
|
f'(expected {f_reference})')
|
|
|
|
|
|
|
|
args = [str(f_test.resolve())]
|
2021-05-03 13:01:08 +02:00
|
|
|
env = self.env.prepare_subprocess(args)
|
2021-12-03 13:22:23 +01:00
|
|
|
if mp:
|
|
|
|
# Split test directories, so that tests running in parallel don't
|
|
|
|
# break each other.
|
|
|
|
for d in ['TEST_DIR', 'SOCK_DIR']:
|
|
|
|
env[d] = os.path.join(env[d], f_test.name)
|
|
|
|
Path(env[d]).mkdir(parents=True, exist_ok=True)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
iotests: Write test output to TEST_DIR
Drop the use of OUTPUT_DIR (test/qemu-iotests under the build
directory), and instead write test output files (.out.bad, .notrun, and
.casenotrun) to TEST_DIR.
With this, the same test can be run concurrently without the separate
instances interfering, because they will need separate TEST_DIRs anyway.
Running the same test separately is useful when running the iotests with
various format/protocol combinations in parallel, or when you just want
to aggressively exercise a single test (e.g. when it fails only
sporadically).
Putting this output into TEST_DIR means that it will stick around for
inspection after the test run is done (though running the same test in
the same TEST_DIR will overwrite it, just as it used to be); but given
that TEST_DIR is a scratch directory, it should be clear that users can
delete all of its content at any point. (And if TEST_DIR is on tmpfs,
it will just disappear on shutdown.) Contrarily, alternative approaches
that would put these output files into OUTPUT_DIR with some prefix to
differentiate between separate test runs might easily lead to cluttering
OUTPUT_DIR.
(This change means OUTPUT_DIR is no longer written to by the iotests, so
we can drop its usage altogether.)
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20220221172909.762858-1-hreitz@redhat.com>
[hreitz: Simplified `Path(os.path.join(x, y))` to `Path(x, y)`, as
suggested by Vladimir; and rebased on 9086c7639822b6
("tests/qemu-iotests: Rework the checks and spots using GNU
sed")]
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2022-02-21 18:29:09 +01:00
|
|
|
test_dir = env['TEST_DIR']
|
|
|
|
f_bad = Path(test_dir, f_test.name + '.out.bad')
|
|
|
|
f_notrun = Path(test_dir, f_test.name + '.notrun')
|
|
|
|
f_casenotrun = Path(test_dir, f_test.name + '.casenotrun')
|
|
|
|
|
|
|
|
for p in (f_notrun, f_casenotrun):
|
|
|
|
silent_unlink(p)
|
|
|
|
|
2021-01-25 19:50:54 +01:00
|
|
|
t0 = time.time()
|
|
|
|
with f_bad.open('w', encoding="utf-8") as f:
|
2021-05-10 21:04:49 +02:00
|
|
|
with subprocess.Popen(args, cwd=str(f_test.parent), env=env,
|
|
|
|
stdout=f, stderr=subprocess.STDOUT) as proc:
|
|
|
|
try:
|
|
|
|
proc.wait()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
proc.terminate()
|
|
|
|
proc.wait()
|
|
|
|
return TestResult(status='not run',
|
|
|
|
description='Interrupted by user',
|
|
|
|
interrupted=True)
|
|
|
|
ret = proc.returncode
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
elapsed = round(time.time() - t0, 1)
|
|
|
|
|
|
|
|
if ret != 0:
|
|
|
|
return TestResult(status='fail', elapsed=elapsed,
|
|
|
|
description=f'failed, exit status {ret}',
|
|
|
|
diff=file_diff(str(f_reference), str(f_bad)))
|
|
|
|
|
|
|
|
if f_notrun.exists():
|
2021-09-23 20:07:15 +02:00
|
|
|
return TestResult(
|
|
|
|
status='not run',
|
|
|
|
description=f_notrun.read_text(encoding='utf-8').strip())
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
casenotrun = ''
|
|
|
|
if f_casenotrun.exists():
|
2021-09-23 20:07:15 +02:00
|
|
|
casenotrun = f_casenotrun.read_text(encoding='utf-8')
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
diff = file_diff(str(f_reference), str(f_bad))
|
|
|
|
if diff:
|
2022-03-04 20:36:04 +01:00
|
|
|
if os.environ.get("QEMU_IOTESTS_REGEN", None) is not None:
|
|
|
|
shutil.copyfile(str(f_bad), str(f_reference))
|
|
|
|
print("########################################")
|
|
|
|
print("##### REFERENCE FILE UPDATED #####")
|
|
|
|
print("########################################")
|
2021-01-25 19:50:54 +01:00
|
|
|
return TestResult(status='fail', elapsed=elapsed,
|
|
|
|
description=f'output mismatch (see {f_bad})',
|
|
|
|
diff=diff, casenotrun=casenotrun)
|
|
|
|
else:
|
|
|
|
f_bad.unlink()
|
|
|
|
return TestResult(status='pass', elapsed=elapsed,
|
|
|
|
casenotrun=casenotrun)
|
|
|
|
|
|
|
|
def run_test(self, test: str,
|
2021-12-10 21:14:50 +01:00
|
|
|
test_field_width: int,
|
2021-12-03 13:22:23 +01:00
|
|
|
mp: bool = False) -> TestResult:
|
2021-12-03 13:22:21 +01:00
|
|
|
"""
|
|
|
|
Run one test and print short status
|
|
|
|
|
|
|
|
:param test: test file path
|
|
|
|
:param test_field_width: width for first field of status format
|
2021-12-03 13:22:23 +01:00
|
|
|
:param mp: if true, we are in a multiprocessing environment, don't try
|
|
|
|
to rewrite things in stdout
|
|
|
|
|
|
|
|
Note: this method may be called from subprocess, so it does not
|
|
|
|
change ``self`` object in any way!
|
2021-12-03 13:22:21 +01:00
|
|
|
"""
|
|
|
|
|
2021-01-25 19:50:54 +01:00
|
|
|
last_el = self.last_elapsed.get(test)
|
|
|
|
start = datetime.datetime.now().strftime('%H:%M:%S')
|
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if not self.tap:
|
2021-12-03 13:22:23 +01:00
|
|
|
self.test_print_one_line(test=test,
|
2021-12-10 21:14:50 +01:00
|
|
|
test_field_width=test_field_width,
|
2021-12-03 13:22:23 +01:00
|
|
|
status = 'started' if mp else '...',
|
|
|
|
starttime=start,
|
|
|
|
lasttime=last_el,
|
2021-12-10 21:14:50 +01:00
|
|
|
end = '\n' if mp else '\r')
|
2022-05-09 14:41:33 +02:00
|
|
|
else:
|
|
|
|
testname = os.path.basename(test)
|
|
|
|
print(f'# running {self.env.imgfmt} {testname}')
|
2021-01-25 19:50:54 +01:00
|
|
|
|
2021-12-03 13:22:23 +01:00
|
|
|
res = self.do_run_test(test, mp)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
end = datetime.datetime.now().strftime('%H:%M:%S')
|
2021-12-10 21:14:50 +01:00
|
|
|
self.test_print_one_line(test=test,
|
|
|
|
test_field_width=test_field_width,
|
|
|
|
status=res.status,
|
2021-01-25 19:50:54 +01:00
|
|
|
starttime=start, endtime=end,
|
|
|
|
lasttime=last_el, thistime=res.elapsed,
|
2021-12-10 21:14:50 +01:00
|
|
|
description=res.description)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
if res.casenotrun:
|
tests/qemu-iotests/testrunner: Quote "case not run" lines in TAP mode
In TAP mode, the stdout is reserved for the TAP protocol, so we
have to make sure to mark other lines with a comment '#' character
at the beginning to avoid that the TAP parser at the other end
gets confused.
To test this condition, run "configure" for example with:
--block-drv-rw-whitelist=copy-before-write,qcow2,raw,file,host_device,blkdebug,null-co,copy-on-read
so that iotest 041 will report that some tests are not run due to
the missing "quorum" driver. Without this change, "make check-block"
fails since the meson tap parser gets confused by these messages.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20220223124353.3273898-1-thuth@redhat.com>
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2022-02-23 13:43:53 +01:00
|
|
|
if self.tap:
|
|
|
|
print('#' + res.casenotrun.replace('\n', '\n#'))
|
|
|
|
else:
|
|
|
|
print(res.casenotrun)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
iotests/testrunner: Flush after run_test()
When stdout is not a terminal, the buffer may not be flushed at each end
of line, so we should flush after each test is done. This is especially
apparent when run by check-block, in two ways:
First, when running make check-block -jX with X > 1, progress indication
was missing, even though testrunner.py does theoretically print each
test's status once it has been run, even in multi-processing mode.
Flushing after each test restores this progress indication.
Second, sometimes make check-block failed altogether, with an error
message that "too few tests [were] run". I presume that's because one
worker process in the job pool did not get to flush its stdout before
the main process exited, and so meson did not get to see that worker's
test results. In any case, by flushing at the end of run_test(), the
problem has disappeared for me.
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20220506134215.10086-1-hreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2022-05-06 15:42:15 +02:00
|
|
|
sys.stdout.flush()
|
2021-01-25 19:50:54 +01:00
|
|
|
return res
|
|
|
|
|
2021-12-03 13:22:23 +01:00
|
|
|
def run_tests(self, tests: List[str], jobs: int = 1) -> bool:
|
2021-01-25 19:50:54 +01:00
|
|
|
n_run = 0
|
|
|
|
failed = []
|
|
|
|
notrun = []
|
|
|
|
casenotrun = []
|
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if self.tap:
|
|
|
|
self.env.print_env('# ')
|
2022-02-23 10:58:16 +01:00
|
|
|
print('1..%d' % len(tests))
|
2022-01-07 13:18:11 +01:00
|
|
|
else:
|
2021-01-25 19:50:54 +01:00
|
|
|
self.env.print_env()
|
|
|
|
|
|
|
|
test_field_width = max(len(os.path.basename(t)) for t in tests) + 2
|
|
|
|
|
2021-12-03 13:22:23 +01:00
|
|
|
if jobs > 1:
|
|
|
|
results = self.run_tests_pool(tests, test_field_width, jobs)
|
|
|
|
|
|
|
|
for i, t in enumerate(tests):
|
2021-01-25 19:50:54 +01:00
|
|
|
name = os.path.basename(t)
|
2021-12-03 13:22:23 +01:00
|
|
|
|
|
|
|
if jobs > 1:
|
|
|
|
res = results[i]
|
|
|
|
else:
|
|
|
|
res = self.run_test(t, test_field_width)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
|
|
|
assert res.status in ('pass', 'fail', 'not run')
|
|
|
|
|
|
|
|
if res.casenotrun:
|
|
|
|
casenotrun.append(t)
|
|
|
|
|
|
|
|
if res.status != 'not run':
|
|
|
|
n_run += 1
|
|
|
|
|
|
|
|
if res.status == 'fail':
|
|
|
|
failed.append(name)
|
|
|
|
if res.diff:
|
2022-02-09 11:15:29 +01:00
|
|
|
if self.tap:
|
|
|
|
print('\n'.join(res.diff), file=sys.stderr)
|
|
|
|
else:
|
|
|
|
print('\n'.join(res.diff))
|
2021-01-25 19:50:54 +01:00
|
|
|
elif res.status == 'not run':
|
|
|
|
notrun.append(name)
|
2021-12-03 13:22:22 +01:00
|
|
|
elif res.status == 'pass':
|
|
|
|
assert res.elapsed is not None
|
|
|
|
self.last_elapsed.update(t, res.elapsed)
|
2021-01-25 19:50:54 +01:00
|
|
|
|
2021-10-06 11:24:22 +02:00
|
|
|
sys.stdout.flush()
|
2021-01-25 19:50:54 +01:00
|
|
|
if res.interrupted:
|
|
|
|
break
|
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if not self.tap:
|
|
|
|
if notrun:
|
|
|
|
print('Not run:', ' '.join(notrun))
|
2021-01-25 19:50:54 +01:00
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if casenotrun:
|
|
|
|
print('Some cases not run in:', ' '.join(casenotrun))
|
2021-01-25 19:50:54 +01:00
|
|
|
|
2022-01-07 13:18:11 +01:00
|
|
|
if failed:
|
|
|
|
print('Failures:', ' '.join(failed))
|
|
|
|
print(f'Failed {len(failed)} of {n_run} iotests')
|
|
|
|
else:
|
|
|
|
print(f'Passed all {n_run} iotests')
|
|
|
|
return not failed
|