aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun_project_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 6f4d0a3..da70bcb 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -211,8 +211,8 @@ def run_test_inprocess(testdir):
old_cwd = os.getcwd()
os.chdir(testdir)
try:
- returncode_test = mesontest.run([])
- returncode_benchmark = mesontest.run(['--benchmark', '--logbase', 'benchmarklog'])
+ returncode_test = mesontest.run(['--no-rebuild'])
+ returncode_benchmark = mesontest.run(['--no-rebuild', '--benchmark', '--logbase', 'benchmarklog'])
finally:
sys.stdout = old_stdout
sys.stderr = old_stderr