merge mainline into newreloc
This commit is contained in:
commit
8b0800f66f
239 changed files with 15971 additions and 6550 deletions
14
tests/grub_script_blanklines.in
Normal file
14
tests/grub_script_blanklines.in
Normal file
|
@ -0,0 +1,14 @@
|
|||
#! /bin/sh -e
|
||||
|
||||
@builddir@/grub-script-check <<EOF
|
||||
# comment 1
|
||||
|
||||
command1 arg1
|
||||
|
||||
command2 arg2
|
||||
|
||||
|
||||
|
||||
last command
|
||||
# comment 2
|
||||
EOF
|
32
tests/grub_script_echo1.in
Normal file
32
tests/grub_script_echo1.in
Normal file
|
@ -0,0 +1,32 @@
|
|||
#! @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/>.
|
||||
|
||||
foo=bar
|
||||
echo $foo ${foo}
|
||||
echo "$foo" "${foo}"
|
||||
echo '$foo' '${foo}'
|
||||
echo a$foob a${foo}b
|
||||
echo ab"cd"ef$foo'gh'ij${foo}kl\ mn\"op\'qr\$st\(uv\<wx\>yz\)
|
||||
|
||||
foo=c
|
||||
bar=h
|
||||
echo e"$foo"${bar}o
|
||||
e"$foo"${bar}o hello world
|
||||
|
||||
foo=echo
|
||||
$foo 1234
|
3
tests/grub_script_echo_keywords.in
Normal file
3
tests/grub_script_echo_keywords.in
Normal file
|
@ -0,0 +1,3 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
echo if then else fi for do done
|
10
tests/grub_script_final_semicolon.in
Normal file
10
tests/grub_script_final_semicolon.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
#! /bin/sh -e
|
||||
|
||||
@builddir@/grub-script-check <<EOF
|
||||
echo one;
|
||||
echo one; echo two
|
||||
echo one; echo two;
|
||||
echo one ; echo two ;
|
||||
echo one ; echo two ; echo three
|
||||
echo one; echo two ; echo three;
|
||||
EOF
|
27
tests/grub_script_for1.in
Normal file
27
tests/grub_script_for1.in
Normal file
|
@ -0,0 +1,27 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
for x in one two 'three 3' "four 4" five six-6; do echo $x; done
|
||||
|
||||
for x in one two 'three 3' "four 4" five six-6
|
||||
do
|
||||
echo $x
|
||||
done
|
||||
|
||||
foo="1 2"
|
||||
for x in ab${foo}cd; do echo $x; done
|
||||
for x in "ab${foo}cd"; do echo $x; done
|
||||
|
||||
a="one two three"
|
||||
y=foo
|
||||
echo $y
|
||||
for y in $a; do
|
||||
echo $y
|
||||
done
|
||||
echo $y
|
||||
|
||||
|
||||
b="one two three"
|
||||
for z in $b; do
|
||||
echo $z
|
||||
done
|
||||
echo $z
|
34
tests/grub_script_vars1.in
Normal file
34
tests/grub_script_vars1.in
Normal file
|
@ -0,0 +1,34 @@
|
|||
#! @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/>.
|
||||
|
||||
var=foo
|
||||
echo $var
|
||||
echo "$var"
|
||||
echo ${var}
|
||||
echo "${var}"
|
||||
|
||||
echo $1 $2 $?
|
||||
|
||||
foo=foo
|
||||
echo "" $foo
|
||||
|
||||
echo $bar $foo
|
||||
|
||||
bar=""
|
||||
echo $bar $foo
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash -e
|
||||
|
||||
# Compares GRUB script output with BASH output.
|
||||
# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2009,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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#! /bin/bash -e
|
||||
|
||||
# Run GRUB script in a Qemu instance
|
||||
# Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2009,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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue