summaryrefslogtreecommitdiff
path: root/run_single_test.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-06-08 12:48:33 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-06-09 13:25:36 +0200
commit7fc755b334dd58471dfbf15062aa2ba07a82c8e7 (patch)
tree605d632e38e96d1c1cc5cabe3c896ee7ca84517a /run_single_test.py
parent9c40b33cf6a0425a8452fa34dc7b4101e29d0319 (diff)
downloadmeson-7fc755b334dd58471dfbf15062aa2ba07a82c8e7.tar.gz
typing: Fully annotate run_project_tests.py
Diffstat (limited to 'run_single_test.py')
-rwxr-xr-xrun_single_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_single_test.py b/run_single_test.py
index c6018d5a3..b491c385b 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()))):