From 26f0a2b9782ec70ee0ff235dbf449a70676cfe90 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 12 Jan 2019 15:36:53 +0100 Subject: Remove redundant verbose-tests option --- extras/autowaf.py | 5 +---- 1 file changed, 1 insertion(+), 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')) -- cgit v1.2.1