diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-01-19 16:24:24 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-28 14:38:02 -0500 |
commit | 2e44165f52aadd325677fd2cb1522c4247a42de7 (patch) | |
tree | 4d15a331fc2616b09d6bfbac6a854fac82245632 /testsuite/driver/runtests.py | |
parent | b3b4d3c1b1fbe1fa3a04d8233ef78dcd12299753 (diff) | |
download | haskell-2e44165f52aadd325677fd2cb1522c4247a42de7.tar.gz |
Reduce default test verbosity
Diffstat (limited to 'testsuite/driver/runtests.py')
-rw-r--r-- | testsuite/driver/runtests.py | 2 |
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: |