[commit: ghc] master: #15387 Fix setting testsuite verbose to zero (0d6ef6d)

git at git.haskell.org git at git.haskell.org
Mon Jul 16 19:22:00 UTC 2018


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/0d6ef6d71e5077eb217456fdd8a515a8cab724ad/ghc

>---------------------------------------------------------------

commit 0d6ef6d71e5077eb217456fdd8a515a8cab724ad
Author: Antti Siponen <antti.siponen at iki.fi>
Date:   Sun Jul 15 21:47:42 2018 +0200

    #15387 Fix setting testsuite verbose to zero


>---------------------------------------------------------------

0d6ef6d71e5077eb217456fdd8a515a8cab724ad
 testsuite/driver/runtests.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py
index 811a6e0..4e275c5 100644
--- a/testsuite/driver/runtests.py
+++ b/testsuite/driver/runtests.py
@@ -104,7 +104,7 @@ if args.threads:
     config.threads = args.threads
     config.use_threads = True
 
-if args.verbose:
+if args.verbose is not None:
     config.verbose = args.verbose
 config.skip_perf_tests = args.skip_perf_tests
 



More information about the ghc-commits mailing list