diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-08 12:48:33 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-06-09 13:25:36 +0200 |
commit | 7fc755b334dd58471dfbf15062aa2ba07a82c8e7 (patch) | |
tree | 605d632e38e96d1c1cc5cabe3c896ee7ca84517a /run_single_test.py | |
parent | 9c40b33cf6a0425a8452fa34dc7b4101e29d0319 (diff) | |
download | meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.zip meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.tar.gz meson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.tar.bz2 |
typing: Fully annotate run_project_tests.py
Diffstat (limited to 'run_single_test.py')
-rwxr-xr-x | run_single_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_single_test.py b/run_single_test.py index c6018d5..b491c38 100755 --- a/run_single_test.py +++ b/run_single_test.py @@ -59,7 +59,7 @@ def main() -> None: _cmds = get_backend_commands(backend, False) commands = (_cmds[0], _cmds[1], _cmds[3], _cmds[4]) - results = [run_test(t, t.args, comp, backend, backend_args, commands, False, True) for t in tests] + results = [run_test(t, t.args, comp, backend, backend_args, commands, '', True) for t in tests] failed = False for test, result in zip(tests, results): if (result is None) or (('MESON_SKIP_TEST' in result.stdo) and (skippable(str(args.case.parent), test.path.as_posix()))): |