diff options
author | David Robillard <d@drobilla.net> | 2019-01-12 15:36:53 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-12 19:13:21 +0100 |
commit | 26f0a2b9782ec70ee0ff235dbf449a70676cfe90 (patch) | |
tree | 30bf92d692c93da0b331bce2f3b91e1348c17a9a | |
parent | fc35c2ceffff29ec0660370418d0f4160dc3f111 (diff) | |
download | autowaf-26f0a2b9782ec70ee0ff235dbf449a70676cfe90.tar.gz autowaf-26f0a2b9782ec70ee0ff235dbf449a70676cfe90.tar.bz2 autowaf-26f0a2b9782ec70ee0ff235dbf449a70676cfe90.zip |
Remove redundant verbose-tests option
-rw-r--r-- | extras/autowaf.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py index a4a26f6..d970744 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -87,9 +87,6 @@ def set_options(opt, debug_by_default=False, test=False): test_opts.add_option('--wrapper', type='string', dest='test_wrapper', help='command prefix for tests (e.g. valgrind)') - test_opts.add_option('--verbose-tests', action='store_true', - default=False, dest='verbose_tests', - help='always show test output') g_step = 1 @@ -905,7 +902,7 @@ def run_test(ctx, if type(test) != list and not callable(test): Logs.pprint('RED', test) - if Options.options.verbose_tests and type(test) != list and not callable(test): + if Options.options.verbose and type(test) != list and not callable(test): sys.stdout.write(out[0].decode('utf-8')) sys.stderr.write(out[1].decode('utf-8')) |