diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-18 16:42:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-18 16:42:51 +0200 |
commit | 81b66f8567ea2e3ecb0983318d5dedd3b1332e48 (patch) | |
tree | 2ffc7a880c8c24533a7515db9ccf8c479ca9ac09 /tests/guix-package.sh | |
parent | 07c86312ca96d095ff5ebeae37940fd7c726c3e5 (diff) | |
download | guix-81b66f8567ea2e3ecb0983318d5dedd3b1332e48.tar guix-81b66f8567ea2e3ecb0983318d5dedd3b1332e48.tar.gz |
tests: Clarify filtering of the "debug" output.
* tests/guix-package.sh: Clearly filter out the "debug" output of
'gnu-make-boot0'.
Diffstat (limited to 'tests/guix-package.sh')
-rw-r--r-- | tests/guix-package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-package.sh b/tests/guix-package.sh index ee186ead83..60b42907a8 100644 --- a/tests/guix-package.sh +++ b/tests/guix-package.sh @@ -55,7 +55,7 @@ test "`guix package --search-paths -p "$profile" | wc -l`" = 0 if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null then boot_make="(@@ (gnu packages base) gnu-make-boot0)" - boot_make_drv="`guix build -e "$boot_make" | tail -1`" + boot_make_drv="`guix build -e "$boot_make" | grep -v -e -debug`" guix package --bootstrap -p "$profile" -i "$boot_make_drv" test -L "$profile-2-link" test -f "$profile/bin/make" && test -f "$profile/bin/guile" |