diff options
| author | Martin Schitter <ms@mur.at> | 2025-10-09 06:14:36 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-10-19 21:29:38 +0200 |
| commit | e2ead32fe03b6e6e0a08f8ce85e0f24feecf32c6 (patch) | |
| tree | 98ed57fdc3465eb001618aa95cbfa992e09fb055 /tests | |
| parent | 0c5f4eeed852540697f41b569ae3940fbffed069 (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.sh | 2 |
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" | |||
| 261 | log=`guix build "$drv" --log-file` | 261 | log=`guix build "$drv" --log-file` |
| 262 | test -f "$log" | 262 | test -f "$log" |
| 263 | case "$log" in | 263 | case "$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 ;; |
| 266 | esac | 266 | esac |
