From d6b029ad6e141d3b8e75b9a31d4c09585540656b Mon Sep 17 00:00:00 2001 From: clanmills Date: Thu, 22 Oct 2020 15:25:48 +0100 Subject: [PATCH] Don't set --verbose in makefile. Don't treat exiv2_echo == VERBOSE. --- test/Makefile | 4 ++-- tests/bash_tests/utils.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index 415dd83f..88a3bf18 100644 --- a/test/Makefile +++ b/test/Makefile @@ -153,8 +153,8 @@ python_tests: @echo @echo ---- Running python_tests ---- @echo - @echo bash -c 'cd ../tests; python3 runner.py --verbose' - @bash -c 'cd ../tests; python3 runner.py --verbose' + @echo bash -c 'cd ../tests; python3 runner.py' + @bash -c 'cd ../tests; python3 runner.py' mostlyclean clean: rm -rf $(top_srcdir)/test/tmp/* diff --git a/tests/bash_tests/utils.py b/tests/bash_tests/utils.py index f92cc9e8..41203492 100644 --- a/tests/bash_tests/utils.py +++ b/tests/bash_tests/utils.py @@ -461,7 +461,7 @@ class Executer: def run(self): # Whether to display the command to execute - if Config.exiv2_echo or Config.verbose: + if Config.exiv2_echo: print('++', ' '.join(self.args)) # Check stdout