diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2018-05-13 10:36:58 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2018-10-04 09:40:21 -0400 |
commit | 37067a53c4b3b99982ef8e1f431ba0c9302b66e8 (patch) | |
tree | 7d3ebbb24b45bf6cfdb2a76a4dcdabf8808a346c /run_project_tests.py | |
parent | 5af2717e76015b47bfc2b11d4034099d9b62d978 (diff) | |
download | meson-37067a53c4b3b99982ef8e1f431ba0c9302b66e8.zip meson-37067a53c4b3b99982ef8e1f431ba0c9302b66e8.tar.gz meson-37067a53c4b3b99982ef8e1f431ba0c9302b66e8.tar.bz2 |
Use a single ArgumentParser for all subcommands
This has the adventage that "meson --help" shows a list of all commands,
making them discoverable. This also reduce the manual parsing of
arguments to the strict minimum needed for backward compatibility.
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 ba7b5e0..876d135 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -247,12 +247,12 @@ def run_test_inprocess(testdir): os.chdir(testdir) test_log_fname = Path('meson-logs', 'testlog.txt') try: - returncode_test = mtest.run(['--no-rebuild']) + returncode_test = mtest.run_with_args(['--no-rebuild']) if test_log_fname.exists(): test_log = test_log_fname.open(errors='ignore').read() else: test_log = '' - returncode_benchmark = mtest.run(['--no-rebuild', '--benchmark', '--logbase', 'benchmarklog']) + returncode_benchmark = mtest.run_with_args(['--no-rebuild', '--benchmark', '--logbase', 'benchmarklog']) finally: sys.stdout = old_stdout sys.stderr = old_stderr |