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
echo fstar $f
done
for f in aaa$*bbb
do
echo fstar $f
done
}
fstar
@ -80,6 +85,16 @@ function fdqstar {
do
echo fdqstar $f
done
for f in aaa"$*"bbb
do
echo fdqstar $f
done
for f in "aaa$*bbb"
do
echo fdqstar $f
done
}
fdqstar
@ -92,6 +107,11 @@ function fat {
do
echo fat $f
done
for f in aaa$@bbb
do
echo fat $f
done
}
fat
@ -106,6 +126,16 @@ function fdqat {
do
echo fdqat $f
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.