~ruther/guix-local

e2ead32fe03b6e6e0a08f8ce85e0f24feecf32c6 — Martin Schitter 11 months ago 0c5f4ee
tests: guix-daemon.sh: Ignore guile locale warning.

Ignore "guile: warning: failed to install locale" lines
in the examined build log file. They are irrelevant for
this particular test and cause unexpected errors.

This commit contains the following changes:

    M tests/guix-daemon.sh

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
1 files changed, 1 insertions(+), 1 deletions(-)

M tests/guix-daemon.sh
M tests/guix-daemon.sh => tests/guix-daemon.sh +1 -1
@@ 261,6 261,6 @@ guix build "$drv"
log=`guix build "$drv" --log-file`
test -f "$log"
case "$log" in
    *.gz) test "`gunzip -c < "$log"`" = "$stamp" ;;
    *.gz) test "`gunzip -c < "$log" | grep -v 'guile: warning.*locale'`" = "$stamp" ;;
    *)    false ;;
esac