diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-05-18 15:23:57 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-05-19 00:14:51 +0200 |
commit | 7acdecec9992b81485814f153effdcb097c1e7c4 (patch) | |
tree | 5c2e8e7a0e15155a15bac84f7d3d16555330211e /tests | |
parent | 9f7d66656646fac3746c52216ad6061c9c0adc27 (diff) | |
download | patches-7acdecec9992b81485814f153effdcb097c1e7c4.tar patches-7acdecec9992b81485814f153effdcb097c1e7c4.tar.gz |
tests: Adjust to new "unbound variable" messages.
This is a followup to 2d2f98efb36db3f003d950a004806234962b4f4d.
* tests/guix-system.sh: Adjust regexps to match "error:".
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-system.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/guix-system.sh b/tests/guix-system.sh index ff9114ab74..2b94bc0516 100644 --- a/tests/guix-system.sh +++ b/tests/guix-system.sh @@ -125,9 +125,9 @@ else then # FIXME: With Guile 2.2.0 the error is reported on line 4. # See <http://bugs.gnu.org/26107>. - grep "$tmpfile:[49]:[0-9]\+: GRUB-config.*[Uu]nbound variable" "$errorfile" + grep "$tmpfile:[49]:[0-9]\+:.*GRUB-config.*[Uu]nbound variable" "$errorfile" else - grep "$tmpfile:9:[0-9]\+: GRUB-config.*[Uu]nbound variable" "$errorfile" + grep "$tmpfile:9:[0-9]\+:.*GRUB-config.*[Uu]nbound variable" "$errorfile" fi fi |