summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Schitter <ms@mur.at>2025-10-09 06:14:36 +0000
committerLudovic Courtès <ludo@gnu.org>2025-10-19 21:29:38 +0200
commite2ead32fe03b6e6e0a08f8ce85e0f24feecf32c6 (patch)
tree98ed57fdc3465eb001618aa95cbfa992e09fb055 /tests
parent0c5f4eeed852540697f41b569ae3940fbffed069 (diff)
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>
Diffstat (limited to 'tests')
-rw-r--r--tests/guix-daemon.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-daemon.sh b/tests/guix-daemon.sh
index d85727c9554..0aee853a0ca 100644
--- a/tests/guix-daemon.sh
+++ b/tests/guix-daemon.sh
@@ -261,6 +261,6 @@ guix build "$drv"
261log=`guix build "$drv" --log-file` 261log=`guix build "$drv" --log-file`
262test -f "$log" 262test -f "$log"
263case "$log" in 263case "$log" in
264 *.gz) test "`gunzip -c < "$log"`" = "$stamp" ;; 264 *.gz) test "`gunzip -c < "$log" | grep -v 'guile: warning.*locale'`" = "$stamp" ;;
265 *) false ;; 265 *) false ;;
266esac 266esac