aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-03-03 09:38:48 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-03-04 13:00:30 +0100
commit5d2f14fce7938a207162efc28f6ba46e873aec9b (patch)
tree1ae4d0767b12ab7cf214d31571a75d0e81aa9eec /run_unittests.py
parentdd5791309e7dcd0a156063784a60245d8088da14 (diff)
downloadmeson-5d2f14fce7938a207162efc28f6ba46e873aec9b.zip
meson-5d2f14fce7938a207162efc28f6ba46e873aec9b.tar.gz
meson-5d2f14fce7938a207162efc28f6ba46e873aec9b.tar.bz2
rewriter: Quiet logging by default
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 408a7af..b03dbeb 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -5197,7 +5197,7 @@ class RewriterTests(BasePlatformTests):
def rewrite_raw(self, directory, args):
if isinstance(args, str):
args = [args]
- command = self.rewrite_command + ['--sourcedir', directory] + args
+ command = self.rewrite_command + ['--verbose', '--sourcedir', directory] + args
p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
universal_newlines=True, timeout=60)
print('STDOUT:')