From ecdadd1e3d82af0afe471ba973d89e3adc7d7f9a Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sun, 17 Nov 2024 01:58:18 -0500 Subject: [PATCH] ... --- run_project_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_project_tests.py b/run_project_tests.py index ab34c27f21d2..0766e5eb6f5f 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -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