Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-schwartz committed Nov 17, 2024
1 parent 00b331e commit ecdadd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_project_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,12 +569,12 @@ def run_test_inprocess(testdir: str) -> T.Tuple[int, str, str, str]:
os.chdir(testdir)
test_log_fname = os.path.join('meson-logs', 'testlog.txt')
try:
returncode_test = mtest.run_with_args(['--no-rebuild'])
returncode_test = mtest.run_with_args()
if os.path.exists(test_log_fname):
test_log = _run_ci_include([test_log_fname])
else:
test_log = ''
returncode_benchmark = mtest.run_with_args(['--no-rebuild', '--benchmark', '--logbase', 'benchmarklog'])
returncode_benchmark = mtest.run_with_args(['--benchmark', '--logbase', 'benchmarklog'])
finally:
sys.stdout = old_stdout
sys.stderr = old_stderr
Expand Down

0 comments on commit ecdadd1

Please sign in to comment.