2001-10-30 23:11:20 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
# Run one old-style test.
|
|
|
|
# Tests are stored in applet/testcase shell scripts.
|
|
|
|
# They are run using "sh -x -e applet/testcase".
|
|
|
|
# Option -e will make testcase stop on the first failed command.
|
2007-02-25 00:40:37 +00:00
|
|
|
run_applet_testcase()
|
2001-10-30 23:11:20 +00:00
|
|
|
{
|
|
|
|
local applet=$1
|
|
|
|
local testcase=$2
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
local status
|
2001-10-30 23:11:20 +00:00
|
|
|
local uc_applet=$(echo $applet | tr a-z A-Z)
|
|
|
|
local testname=$(basename $testcase)
|
|
|
|
|
2004-10-08 07:46:08 +00:00
|
|
|
if grep -q "^# CONFIG_${uc_applet} is not set$" $bindir/.config; then
|
2007-12-02 01:44:42 +00:00
|
|
|
echo "UNTESTED: $testname"
|
2001-10-30 23:11:20 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2002-02-19 23:43:08 +00:00
|
|
|
if grep -q "^# FEATURE: " $testcase; then
|
|
|
|
local feature=`sed -ne 's/^# FEATURE: //p' $testcase`
|
2001-10-30 23:11:20 +00:00
|
|
|
|
2004-10-08 07:46:08 +00:00
|
|
|
if grep -q "^# ${feature} is not set$" $bindir/.config; then
|
2007-12-02 01:44:42 +00:00
|
|
|
echo "UNTESTED: $testname"
|
2001-10-30 23:11:20 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
rm -rf ".tmpdir.$applet"
|
|
|
|
mkdir -p ".tmpdir.$applet"
|
|
|
|
cd ".tmpdir.$applet" || return 1
|
|
|
|
|
|
|
|
# echo "Running testcase $testcase"
|
|
|
|
d="$tsdir" sh -x -e "$testcase" >"$testname.stdout.txt" 2>&1
|
|
|
|
status=$?
|
|
|
|
if [ $status != 0 ]; then
|
|
|
|
echo "FAIL: $testname"
|
|
|
|
if [ x"$VERBOSE" != x ]; then
|
|
|
|
cat "$testname.stdout.txt"
|
2006-05-25 13:24:02 +00:00
|
|
|
fi
|
2001-10-30 23:11:20 +00:00
|
|
|
else
|
2007-12-02 01:44:42 +00:00
|
|
|
echo "PASS: $testname"
|
2001-10-30 23:11:20 +00:00
|
|
|
fi
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
cd ..
|
|
|
|
rm -rf ".tmpdir.$applet"
|
2001-10-30 23:11:20 +00:00
|
|
|
|
|
|
|
return $status
|
|
|
|
}
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
# Run all old-style tests for given applet
|
2007-02-25 00:40:37 +00:00
|
|
|
run_applet_tests()
|
2001-10-30 23:11:20 +00:00
|
|
|
{
|
|
|
|
local applet=$1
|
|
|
|
local status=0
|
2007-11-13 22:23:57 +00:00
|
|
|
for testcase in $tsdir/$applet/*; do
|
|
|
|
if [ "$testcase" = "$tsdir/$applet/CVS" ]; then
|
2001-10-30 23:11:20 +00:00
|
|
|
continue
|
|
|
|
fi
|
2007-12-02 01:44:42 +00:00
|
|
|
run_applet_testcase $applet $testcase
|
|
|
|
test $? = 0 || status=1
|
2001-10-30 23:11:20 +00:00
|
|
|
done
|
|
|
|
return $status
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-11-13 22:23:57 +00:00
|
|
|
[ -n "$tsdir" ] || tsdir=$(pwd)
|
|
|
|
[ -n "$bindir" ] || bindir=$(dirname $(pwd))
|
|
|
|
PATH="$bindir:$PATH"
|
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
if [ x"$VERBOSE" = x ]; then
|
|
|
|
export VERBOSE=
|
|
|
|
fi
|
|
|
|
|
2002-01-02 20:37:59 +00:00
|
|
|
if [ x"$1" = x"-v" ]; then
|
2007-12-02 01:44:42 +00:00
|
|
|
export VERBOSE=1
|
2002-01-02 20:37:59 +00:00
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2007-11-13 22:23:57 +00:00
|
|
|
implemented=$(
|
|
|
|
$bindir/busybox 2>&1 |
|
|
|
|
while read line; do
|
2007-12-02 01:44:42 +00:00
|
|
|
if [ x"$line" = x"Currently defined functions:" ]; then
|
2007-11-13 22:23:57 +00:00
|
|
|
xargs | sed 's/,//g'
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
|
|
|
|
applets="$implemented"
|
2001-10-30 23:11:20 +00:00
|
|
|
if [ $# -ne 0 ]; then
|
2007-11-13 22:23:57 +00:00
|
|
|
applets="$@"
|
2001-10-30 23:11:20 +00:00
|
|
|
fi
|
|
|
|
|
2006-03-16 16:02:06 +00:00
|
|
|
# Populate a directory with links to all busybox applets
|
|
|
|
|
2007-02-25 00:40:37 +00:00
|
|
|
LINKSDIR="$bindir/runtest-tempdir-links"
|
2006-03-16 16:02:06 +00:00
|
|
|
rm -rf "$LINKSDIR" 2>/dev/null
|
|
|
|
mkdir "$LINKSDIR"
|
2007-11-13 22:23:57 +00:00
|
|
|
for i in $implemented; do
|
2006-03-16 16:02:06 +00:00
|
|
|
ln -s $bindir/busybox "$LINKSDIR"/$i
|
|
|
|
done
|
|
|
|
|
2005-11-07 08:50:53 +00:00
|
|
|
# Set up option flags so tests can be selective.
|
2007-12-02 01:44:42 +00:00
|
|
|
export OPTIONFLAGS=:$(sed -nr 's/^CONFIG_//p' $bindir/.config | sed 's/=.*//' | xargs | sed 's/ /:/g')
|
2005-11-07 08:50:53 +00:00
|
|
|
|
2007-12-02 01:44:42 +00:00
|
|
|
status=0
|
2001-10-30 23:11:20 +00:00
|
|
|
for applet in $applets; do
|
2005-09-23 15:44:46 +00:00
|
|
|
if [ "$applet" = "links" ]; then continue; fi
|
2007-12-02 01:44:42 +00:00
|
|
|
|
|
|
|
# Any old-style tests for this applet?
|
2007-11-13 22:23:57 +00:00
|
|
|
if [ "$applet" != "CVS" -a -d "$tsdir/$applet" ]; then
|
2007-12-02 01:44:42 +00:00
|
|
|
run_applet_tests "$applet"
|
|
|
|
test $? = 0 || status=1
|
2001-10-30 23:11:20 +00:00
|
|
|
fi
|
2005-11-07 08:50:53 +00:00
|
|
|
|
|
|
|
# Is this a new-style test?
|
2007-12-02 01:44:42 +00:00
|
|
|
if [ -f "${applet}.tests" ]; then
|
2007-11-13 22:23:57 +00:00
|
|
|
if [ ! -h "$LINKSDIR/$applet" ] && [ "${applet:0:4}" != "all_" ]; then
|
2006-03-16 16:02:06 +00:00
|
|
|
echo "SKIPPED: $applet (not built)"
|
2005-11-07 08:50:53 +00:00
|
|
|
continue
|
|
|
|
fi
|
2007-12-02 01:44:42 +00:00
|
|
|
# echo "Running test ${tsdir:-.}/${applet}.tests"
|
|
|
|
PATH="$LINKSDIR:$tsdir:$bindir:$PATH" "${tsdir:-.}/${applet}.tests"
|
|
|
|
test $? = 0 || status=1
|
2005-09-02 00:41:53 +00:00
|
|
|
fi
|
2001-10-30 23:11:20 +00:00
|
|
|
done
|
2007-11-26 05:38:20 +00:00
|
|
|
|
|
|
|
# Leaving the dir makes it somewhat easier to run failed test by hand
|
|
|
|
#rm -rf "$LINKSDIR"
|
|
|
|
|
|
|
|
if [ $status != 0 -a x"$VERBOSE" = x ]; then
|
2007-12-02 01:44:42 +00:00
|
|
|
echo "Failures detected, running with -v (verbose) will give more info"
|
2007-11-26 05:38:20 +00:00
|
|
|
fi
|
2001-10-30 23:11:20 +00:00
|
|
|
exit $status
|