summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2016-03-22 21:05:23 +0100
committerMathieu Lirzin <mthl@gnu.org>2016-03-28 15:31:41 +0200
commitce0c9e264008173a9707c8e8e199f8623099fa3c (patch)
tree00e3574f22417cb5b6e2a263dfa9686bca9959fe
parent75f8874fe98eeb4a0a6133840600caf27936eba3 (diff)
tests: Silence guix-daemon.
* test-env.in: Redirect guix-daemon standard error to /dev/null.
-rw-r--r--test-env.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-env.in b/test-env.in
index 799a62276f..040175a8a8 100644
--- a/test-env.in
+++ b/test-env.in
@@ -2,6 +2,7 @@
# GNU Guix --- Functional package management for GNU
# Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
+# Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
#
# This file is part of GNU Guix.
#
@@ -96,7 +97,7 @@ then
# unavailable, for instance if we're not running as root.
"@abs_top_builddir@/pre-inst-env" \
"@abs_top_builddir@/guix-daemon" --disable-chroot \
- --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" &
+ --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" 2>/dev/null &
daemon_pid=$!
trap "kill $daemon_pid ; rm -rf $NIX_STATE_DIR" EXIT