summaryrefslogtreecommitdiff
path: root/testsuite/driver/runtests.py
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2021-01-19 16:24:24 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-28 14:38:02 -0500
commit2e44165f52aadd325677fd2cb1522c4247a42de7 (patch)
tree4d15a331fc2616b09d6bfbac6a854fac82245632 /testsuite/driver/runtests.py
parentb3b4d3c1b1fbe1fa3a04d8233ef78dcd12299753 (diff)
downloadhaskell-2e44165f52aadd325677fd2cb1522c4247a42de7.tar.gz
Reduce default test verbosity
Diffstat (limited to 'testsuite/driver/runtests.py')
-rw-r--r--testsuite/driver/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py
index b9d6fff859..c0482d0f9d 100644
--- a/testsuite/driver/runtests.py
+++ b/testsuite/driver/runtests.py
@@ -402,7 +402,7 @@ def tabulate_metrics(metrics: List[PerfMetric]) -> None:
# First collect all the tests to be run
t_files_ok = True
for file in t_files:
- if_verbose(2, '====> Scanning %s' % file)
+ if_verbose(3, '====> Scanning %s' % file)
newTestDir(tempdir, os.path.dirname(file))
try:
with io.open(file, encoding='utf8') as f: