guix system: Add workaround in test for Guile 3.0.0.

* tests/guix-system.sh: For the 'GRUB-config' test, add workaround for
the reported line number in Guile 3.0.0.
This commit is contained in:
Ludovic Courtès 2020-01-17 17:12:44 +01:00
parent abbb98714b
commit 1bb30aa35b
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 1 deletions

View File

@ -120,7 +120,12 @@ EOF
if guix system build "$tmpfile" -n 2> "$errorfile"
then false
else
if test "`guile -c '(display (effective-version))'`" = 2.2
if test "`guile -c '(display (effective-version))'`" = 3.0
then
# FIXME: With Guile 3.3.0 the error is reported on line 11.
# See <https://bugs.gnu.org/38388>.
grep "$tmpfile:[0-9]\+:[0-9]\+:.*GRUB-config.*[Uu]nbound variable" "$errorfile"
elif test "`guile -c '(display (effective-version))'`" = 2.2
then
# FIXME: With Guile 2.2.0 the error is reported on line 4.
# See <http://bugs.gnu.org/26107>.