diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-04 00:03:30 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-04 00:03:30 +0200 |
commit | 4d2a2802b5448c37d122b7625965abd3d21c33f5 (patch) | |
tree | 99b8a38b0f57ad0bb292353fa317862a920d5500 /run_project_tests.py | |
parent | ecb882cd4f7255c8cef652c215cc85111e08ae07 (diff) | |
download | meson-4d2a2802b5448c37d122b7625965abd3d21c33f5.zip meson-4d2a2802b5448c37d122b7625965abd3d21c33f5.tar.gz meson-4d2a2802b5448c37d122b7625965abd3d21c33f5.tar.bz2 |
Pass --no-rebuild arg when running inprocess to prevent Ninja vomit.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 4 |
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 |