From d9b49049410084eca3cfcb3bbc1c64ba0322a813 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 19 Nov 2021 11:30:47 -0800 Subject: run_single_test: honor the --use-tmpdir flag --- 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 0179a32..031c306 100755 --- a/run_single_test.py +++ b/run_single_test.py @@ -56,7 +56,7 @@ def main() -> None: return 'meson' return '' - results = [run_test(t, t.args, should_fail(t.path), True) for t in tests] + results = [run_test(t, t.args, should_fail(t.path), args.use_tmpdir) for t in tests] failed = False for test, result in zip(tests, results): if (result is None) or ('MESON_SKIP_TEST' in result.stdo): -- cgit v1.1