diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-09 11:25:11 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-11 12:14:38 +0100 |
commit | 7804c45b9ce5a8edd06452d828249e588ae26263 (patch) | |
tree | 08c63e44f13f0554bd61e435c72a02bcc962f0d7 /build-aux | |
parent | 7489207ff788d6f4a9c2b9aec87c9835753dfd2f (diff) | |
download | guix-7804c45b9ce5a8edd06452d828249e588ae26263.tar guix-7804c45b9ce5a8edd06452d828249e588ae26263.tar.gz |
status: Add 'with-status-verbosity'.
* guix/status.scm (logger-for-level, call-with-status-verbosity): New
procedures.
(with-status-verbosity): New macro.
* guix/scripts/environment.scm (guix-environment): Use
'with-status-verbosity' instead of 'with-status-report'.
* guix/scripts/pack.scm (guix-pack): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* build-aux/run-system-tests.scm (run-system-tests): Likewise.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/run-system-tests.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/run-system-tests.scm b/build-aux/run-system-tests.scm index 953ba3e221..bcd7547704 100644 --- a/build-aux/run-system-tests.scm +++ b/build-aux/run-system-tests.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2016, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2016, 2018, 2019 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -64,7 +64,7 @@ (length tests)) (with-store store - (with-status-report print-build-event + (with-status-verbosity 2 (run-with-store store (mlet* %store-monad ((drv (mapm %store-monad system-test-value tests)) (out -> (map derivation->output-path drv))) |