local testcase="$2"
local status
- local uc_applet=$(echo $applet | tr a-z A-Z)
- local testname=$(basename "$testcase")
+ local uc_applet=$(echo "$applet" | tr a-z A-Z)
+ local testname="$testcase"
- if grep -q "^# CONFIG_${uc_applet} is not set$" $bindir/.config; then
+ testname=${testname##*/} # take basename
+ if grep -q "^# CONFIG_$uc_applet is not set$" "$bindir/.config"; then
echo "UNTESTED: $testname"
return 0
fi
if grep -q "^# FEATURE: " "$testcase"; then
local feature=$(sed -ne 's/^# FEATURE: //p' "$testcase")
- if grep -q "^# ${feature} is not set$" $bindir/.config; then
+ if grep -q "^# $feature is not set$" "$bindir/.config"; then
echo "UNTESTED: $testname"
return 0
fi
{
local applet=$1
local status=0
- for testcase in $tsdir/$applet/*; do
- case $(basename "$testcase") in
+
+ for testcase in "$tsdir/$applet"/*; do
+ # switch on basename of $testcase
+ case "${testcase##*/}" in
\#*)
continue
;;
-[ -n "$tsdir" ] || tsdir=$(pwd)
-[ -n "$bindir" ] || bindir=$(dirname $(pwd))
+lcwd=$(pwd)
+[ "$tsdir" ] || tsdir="$lcwd"
+[ "$bindir" ] || bindir="${lcwd%/*}" # one directory up from $lcwd
PATH="$bindir:$PATH"
if [ x"$VERBOSE" = x ]; then
fi
implemented=$(
- $bindir/busybox 2>&1 |
+ "$bindir/busybox" 2>&1 |
while read line; do
if [ x"$line" = x"Currently defined functions:" ]; then
xargs | sed 's/,//g'
rm -rf "$LINKSDIR" 2>/dev/null
mkdir "$LINKSDIR"
for i in $implemented; do
- ln -s $bindir/busybox "$LINKSDIR"/$i
+ ln -s "$bindir/busybox" "$LINKSDIR"/$i
done
# Set up option flags so tests can be selective.