From e2ead32fe03b6e6e0a08f8ce85e0f24feecf32c6 Mon Sep 17 00:00:00 2001 From: Martin Schitter Date: Thu, 9 Oct 2025 06:14:36 +0000 Subject: [PATCH] tests: guix-daemon.sh: Ignore guile locale warning. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- tests/guix-daemon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" 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