diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2021-11-19 11:30:47 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2021-11-22 11:07:36 -0800 |
| commit | d9b49049410084eca3cfcb3bbc1c64ba0322a813 (patch) | |
| tree | 718038a5996cf570084c660b1f935bd844b0821f | |
| parent | ac137d4c42b5a0f5deeeaec0da7c110423d48f56 (diff) | |
| download | meson-d9b49049410084eca3cfcb3bbc1c64ba0322a813.tar.gz | |
run_single_test: honor the --use-tmpdir flag
| -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 0179a3234..031c3065f 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): |
