mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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>
This commit is contained in:
parent
0c5f4eeed8
commit
e2ead32fe0
1 changed files with 1 additions and 1 deletions
|
|
@ -261,6 +261,6 @@ guix build "$drv"
|
||||||
log=`guix build "$drv" --log-file`
|
log=`guix build "$drv" --log-file`
|
||||||
test -f "$log"
|
test -f "$log"
|
||||||
case "$log" in
|
case "$log" in
|
||||||
*.gz) test "`gunzip -c < "$log"`" = "$stamp" ;;
|
*.gz) test "`gunzip -c < "$log" | grep -v 'guile: warning.*locale'`" = "$stamp" ;;
|
||||||
*) false ;;
|
*) false ;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue