+2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * tests/grub_script_expansion.in: Use fixed-string grep to skip over
+ firmware error messages.
+
2013-04-15 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/ieee1275/openfw.c (grub_ieee1275_devalias_next): Make
other=`echo insmod regexp\; echo \* | @builddir@/grub-shell`
for d in $disks; do
if echo "$d" |grep ',' >/dev/null; then
- if echo "$other" | grep "$d" >/dev/null; then
+ if echo "$other" | grep -F -- "$d" >/dev/null; then
echo "$d should not occur in * expansion" >&2
exit 1
fi
else
- if ! echo "$other" | grep "$d" >/dev/null; then
+ if ! echo "$other" | grep -F -- "$d" >/dev/null; then
echo "$d missing from * expansion" >&2
exit 1
fi
other=`echo insmod regexp\; echo '(*)' | @builddir@/grub-shell`
for d in $disks; do
- if ! echo "$other" | grep -F "$d" >/dev/null; then
+ if ! echo "$other" | grep -F -- "$d" >/dev/null; then
echo "$d missing from (*) expansion" >&2
exit 1
fi