updated testcase

This commit is contained in:
BVK Chaitanya 2010-07-29 16:59:49 +05:30
parent fa7edceefb
commit 1c24bab4be

View file

@ -17,12 +17,19 @@
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
disks=`echo ls | @builddir@/grub-shell`
other=`echo echo \\* | @builddir@/grub-shell`
other=`echo echo \* | @builddir@/grub-shell`
for d in $disks; do
if echo "$d" |grep ',' >/dev/null; then
if echo "$other" | grep "$d" >/dev/null; then
echo "$d should not occur in * expansion" >&2
exit 1
fi
else
if ! echo "$other" | grep "$d" >/dev/null; then
echo "$d missing from * expansion" >&2
exit 1
fi
fi
done
other=`echo echo '(*)' | @builddir@/grub-shell`