few more testcases added

This commit is contained in:
BVK Chaitanya 2010-05-12 13:53:50 +05:30
parent 53018ca6c3
commit 04888e8787
1 changed files with 30 additions and 0 deletions

View File

@ -68,6 +68,11 @@ function fstar {
do do
echo fstar $f echo fstar $f
done done
for f in aaa$*bbb
do
echo fstar $f
done
} }
fstar fstar
@ -80,6 +85,16 @@ function fdqstar {
do do
echo fdqstar $f echo fdqstar $f
done done
for f in aaa"$*"bbb
do
echo fdqstar $f
done
for f in "aaa$*bbb"
do
echo fdqstar $f
done
} }
fdqstar fdqstar
@ -92,6 +107,11 @@ function fat {
do do
echo fat $f echo fat $f
done done
for f in aaa$@bbb
do
echo fat $f
done
} }
fat fat
@ -106,6 +126,16 @@ function fdqat {
do do
echo fdqat $f echo fdqat $f
done done
for f in aaa"$@"bbb
do
echo fdqat $f
done
for f in "aaa$@bbb"
do
echo fdqat $f
done
} }
# fdqat # this case needs special handling, lets ignore till we really need it. # fdqat # this case needs special handling, lets ignore till we really need it.