merge with mainline
This commit is contained in:
commit
ee14ec9935
27 changed files with 1004 additions and 396 deletions
41
tests/grub_cmd_regexp.in
Normal file
41
tests/grub_cmd_regexp.in
Normal file
|
@ -0,0 +1,41 @@
|
|||
#! /bin/bash -e
|
||||
|
||||
# Run GRUB script in a Qemu instance
|
||||
# Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
#
|
||||
# GRUB is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# GRUB is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
cmd='regexp -s version "vm-(.*)" vm-1.2.3; echo $version'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test "$v" != 1.2.3; then echo "error: $cmd" >&2; exit 1; fi
|
||||
|
||||
cmd='regexp -s 1:version "vm-(.*)" vm-1.2.3; echo $version'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test "$v" != 1.2.3; then echo "error: $cmd" >&2; exit 1; fi
|
||||
|
||||
cmd='regexp -s 0:match "vm-(.*)" vm-1.2.3; echo $match'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test "$v" != vm-1.2.3; then echo "error: $cmd" >&2; exit 1; fi
|
||||
|
||||
cmd='regexp -s 2:match "vm-(.*)" vm-1.2.3; echo $match'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test -n "$v"; then echo "error: $cmd" >&2; exit 1; fi
|
||||
|
||||
cmd='regexp -s match "\\\((.*)\\\)" (hd0,msdos1); echo $match'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test "$v" != "hd0,msdos1"; then echo "error: $cmd" >&2; exit 1; fi
|
||||
|
||||
cmd='regexp -s match "hd([0-9]+)" hd0; echo $match'
|
||||
v=`echo "$cmd" | @builddir@/grub-shell`
|
||||
if test "$v" != "0"; then echo "error: $cmd" >&2; exit 1; fi
|
134
tests/grub_script_return.in
Normal file
134
tests/grub_script_return.in
Normal file
|
@ -0,0 +1,134 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
# Run GRUB script in a Qemu instance
|
||||
# Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
#
|
||||
# GRUB is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# GRUB is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
function f1 {
|
||||
return
|
||||
echo one
|
||||
}
|
||||
f1
|
||||
|
||||
function f2 {
|
||||
true
|
||||
return
|
||||
echo one
|
||||
}
|
||||
if f2; then echo true; else echo false; fi
|
||||
|
||||
function f3 {
|
||||
false
|
||||
return
|
||||
echo one
|
||||
}
|
||||
if f3; then echo true; else echo false; fi
|
||||
|
||||
function f4 {
|
||||
true
|
||||
return 1;
|
||||
echo one
|
||||
}
|
||||
if f4; then echo true; else echo false; fi
|
||||
|
||||
function f5 {
|
||||
false
|
||||
return 0;
|
||||
echo one
|
||||
}
|
||||
if f5; then echo true; else echo false; fi
|
||||
|
||||
function f6 {
|
||||
echo one
|
||||
if true; then
|
||||
echo two
|
||||
return 0
|
||||
else
|
||||
echo three
|
||||
return 1
|
||||
fi
|
||||
echo four
|
||||
}
|
||||
if f6; then echo true; else echo false; fi
|
||||
|
||||
function f7 {
|
||||
if return 1; then
|
||||
echo one
|
||||
else
|
||||
echo no
|
||||
fi
|
||||
}
|
||||
if f7; then echo true; else echo false; fi
|
||||
|
||||
function f8 {
|
||||
echo one
|
||||
for v in 1 2 3 4 5; do
|
||||
echo $v
|
||||
if test $v = 3; then return 1; fi
|
||||
done
|
||||
echo two
|
||||
}
|
||||
if f8; then echo true; else echo false; fi
|
||||
|
||||
function f9 {
|
||||
x=1
|
||||
echo one
|
||||
until test x = 11111111; do
|
||||
echo $x
|
||||
x="1$x"
|
||||
if test $x = 1111; then return 0; fi
|
||||
done
|
||||
echo two
|
||||
}
|
||||
if f9; then echo true; else echo false; fi
|
||||
|
||||
function f10 {
|
||||
echo one
|
||||
while return 0; do
|
||||
echo two
|
||||
done
|
||||
echo three
|
||||
}
|
||||
if f10; then echo true; else echo false; fi
|
||||
|
||||
function f11 {
|
||||
f1
|
||||
f2
|
||||
f3
|
||||
f4
|
||||
f5
|
||||
f6
|
||||
f7
|
||||
f8
|
||||
f9
|
||||
f10
|
||||
}
|
||||
if f11; then echo true; else echo false; fi
|
||||
|
||||
function f12 {
|
||||
echo one
|
||||
f11
|
||||
return 1
|
||||
echo two
|
||||
}
|
||||
if f12; then echo true; else echo false; fi
|
||||
|
||||
function f13 {
|
||||
echo one
|
||||
f12
|
||||
echo two
|
||||
return 0
|
||||
}
|
||||
if f13; then echo true; else echo false; fi
|
59
tests/grub_script_setparams.in
Normal file
59
tests/grub_script_setparams.in
Normal file
|
@ -0,0 +1,59 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
# Run GRUB script in a Qemu instance
|
||||
# Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
#
|
||||
# GRUB is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# GRUB is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
if test x$grubshell = xyes; then cmd=setparams; else cmd=set; fi
|
||||
|
||||
function f1 {
|
||||
echo $#
|
||||
echo "$#"
|
||||
|
||||
echo $@
|
||||
echo "$@"
|
||||
|
||||
echo $*
|
||||
echo "$*"
|
||||
|
||||
echo $1 $2
|
||||
for v in "$@"; do echo $v; done
|
||||
shift
|
||||
echo $1 $2
|
||||
for v in "$@"; do echo $v; done
|
||||
|
||||
$cmd 1 2 3 4
|
||||
|
||||
echo $#
|
||||
echo "$#"
|
||||
|
||||
echo $@
|
||||
echo "$@"
|
||||
|
||||
echo $*
|
||||
echo "$*"
|
||||
|
||||
echo $1 $2
|
||||
for v in "$@"; do echo $v; done
|
||||
shift
|
||||
echo $1 $2
|
||||
for v in "$@"; do echo $v; done
|
||||
}
|
||||
# f1
|
||||
# f1 a
|
||||
f1 a b
|
||||
f1 a b c
|
||||
f1 a b c d
|
||||
f1 a b c d e
|
Loading…
Add table
Add a link
Reference in a new issue