* tests/test_unset.in: New test.
This commit is contained in:
parent
7994a09a9b
commit
188929ebee
3 changed files with 20 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
|
||||
|
||||
* tests/test_unset.in: New test.
|
||||
|
||||
2013-10-26 BVK Chaitanya <bvk.groups@gmail.com>
|
||||
|
||||
* tests/test_sha512sum.in: New test.
|
||||
|
|
|
@ -863,6 +863,12 @@ script = {
|
|||
common = tests/test_sha512sum.in;
|
||||
};
|
||||
|
||||
script = {
|
||||
testcase;
|
||||
name = test_unset;
|
||||
common = tests/test_unset.in;
|
||||
};
|
||||
|
||||
script = {
|
||||
testcase;
|
||||
name = grub_func_test;
|
||||
|
|
10
tests/test_unset.in
Normal file
10
tests/test_unset.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
#! @builddir@/grub-shell-tester
|
||||
|
||||
foo=one
|
||||
echo $foo
|
||||
|
||||
unset foo
|
||||
echo $foo
|
||||
echo ${foo}
|
||||
|
||||
|
Loading…
Reference in a new issue