run_single_test: honor the --use-tmpdir flag

pull/9599/head
Dylan Baker 3 years ago
parent ac137d4c42
commit d9b4904941
  1. 2
      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):

Loading…
Cancel
Save