From 7fc755b334dd58471dfbf15062aa2ba07a82c8e7 Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Tue, 8 Jun 2021 12:48:33 +0200 Subject: typing: Fully annotate run_project_tests.py --- run_single_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_single_test.py') 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()))): -- cgit v1.1