2001-10-31 04:41:20 +05:30
|
|
|
#!/bin/sh
|
|
|
|
|
2006-03-16 21:32:06 +05:30
|
|
|
# Run old-style test.
|
|
|
|
|
2007-02-25 06:10:37 +05:30
|
|
|
run_applet_testcase()
|
2001-10-31 04:41:20 +05:30
|
|
|
{
|
|
|
|
local applet=$1
|
|
|
|
local testcase=$2
|
|
|
|
|
|
|
|
local status=0
|
2004-04-06 06:11:39 +05:30
|
|
|
local RES=
|
2001-10-31 04:41:20 +05:30
|
|
|
|
|
|
|
local uc_applet=$(echo $applet | tr a-z A-Z)
|
|
|
|
local testname=$(basename $testcase)
|
|
|
|
|
2004-10-08 13:16:08 +05:30
|
|
|
if grep -q "^# CONFIG_${uc_applet} is not set$" $bindir/.config; then
|
2004-04-06 16:40:30 +05:30
|
|
|
echo UNTESTED: $testname
|
2001-10-31 04:41:20 +05:30
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2002-02-20 05:13:08 +05:30
|
|
|
if grep -q "^# FEATURE: " $testcase; then
|
|
|
|
local feature=`sed -ne 's/^# FEATURE: //p' $testcase`
|
2001-10-31 04:41:20 +05:30
|
|
|
|
2004-10-08 13:16:08 +05:30
|
|
|
if grep -q "^# ${feature} is not set$" $bindir/.config; then
|
2004-04-06 16:40:30 +05:30
|
|
|
echo UNTESTED: $testname
|
2001-10-31 04:41:20 +05:30
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2004-04-06 06:11:39 +05:30
|
|
|
rm -rf tmp
|
|
|
|
mkdir -p tmp
|
2006-05-25 18:54:02 +05:30
|
|
|
pushd tmp > /dev/null
|
2001-10-31 04:41:20 +05:30
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
d=$tsdir sh -x -e $testcase >.logfile.txt 2>&1 || status=$?
|
2004-04-06 06:11:39 +05:30
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
if [ $status -ne 0 ]; then
|
2004-04-06 16:40:30 +05:30
|
|
|
echo FAIL: $testname
|
2005-10-06 18:18:03 +05:30
|
|
|
if [ $verbose -gt 0 ]; then
|
2004-04-06 06:11:39 +05:30
|
|
|
cat .logfile.txt
|
2006-05-25 18:54:02 +05:30
|
|
|
fi
|
2002-03-27 23:03:31 +05:30
|
|
|
status=$?
|
2001-10-31 04:41:20 +05:30
|
|
|
else
|
2004-04-06 16:40:30 +05:30
|
|
|
echo PASS: $testname
|
2004-04-06 06:11:39 +05:30
|
|
|
rm -f .logfile.txt
|
2002-03-27 23:03:31 +05:30
|
|
|
status=$?
|
2001-10-31 04:41:20 +05:30
|
|
|
fi
|
|
|
|
|
2006-05-25 18:54:02 +05:30
|
|
|
popd > /dev/null
|
2001-10-31 04:41:20 +05:30
|
|
|
rm -rf tmp
|
|
|
|
|
|
|
|
return $status
|
|
|
|
}
|
|
|
|
|
2007-02-25 06:10:37 +05:30
|
|
|
run_applet_tests()
|
2001-10-31 04:41:20 +05:30
|
|
|
{
|
|
|
|
local applet=$1
|
|
|
|
|
|
|
|
local status=0
|
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
for testcase in $tsdir/$applet/*; do
|
|
|
|
if [ "$testcase" = "$tsdir/$applet/CVS" ]; then
|
2001-10-31 04:41:20 +05:30
|
|
|
continue
|
|
|
|
fi
|
2007-11-14 03:53:57 +05:30
|
|
|
if ! run_applet_testcase $applet $testcase; then
|
2001-10-31 04:41:20 +05:30
|
|
|
status=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
return $status
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status=0
|
2005-10-06 18:18:03 +05:30
|
|
|
verbose=0
|
2001-10-31 04:41:20 +05:30
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
[ -n "$tsdir" ] || tsdir=$(pwd)
|
|
|
|
[ -n "$bindir" ] || bindir=$(dirname $(pwd))
|
|
|
|
PATH="$bindir:$PATH"
|
|
|
|
|
2002-01-03 02:07:59 +05:30
|
|
|
if [ x"$1" = x"-v" ]; then
|
|
|
|
verbose=1
|
2005-10-06 18:18:03 +05:30
|
|
|
export VERBOSE=$verbose
|
2002-01-03 02:07:59 +05:30
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
implemented=$(
|
|
|
|
$bindir/busybox 2>&1 |
|
|
|
|
while read line; do
|
|
|
|
if test x"$line" = x"Currently defined functions:"; then
|
|
|
|
xargs | sed 's/,//g'
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
|
|
|
|
applets="$implemented"
|
2001-10-31 04:41:20 +05:30
|
|
|
if [ $# -ne 0 ]; then
|
2007-11-14 03:53:57 +05:30
|
|
|
applets="$@"
|
2001-10-31 04:41:20 +05:30
|
|
|
fi
|
|
|
|
|
2006-03-16 21:32:06 +05:30
|
|
|
# Populate a directory with links to all busybox applets
|
|
|
|
|
2007-02-25 06:10:37 +05:30
|
|
|
LINKSDIR="$bindir/runtest-tempdir-links"
|
2006-03-16 21:32:06 +05:30
|
|
|
rm -rf "$LINKSDIR" 2>/dev/null
|
|
|
|
mkdir "$LINKSDIR"
|
2007-11-14 03:53:57 +05:30
|
|
|
for i in $implemented; do
|
2006-03-16 21:32:06 +05:30
|
|
|
ln -s $bindir/busybox "$LINKSDIR"/$i
|
|
|
|
done
|
|
|
|
|
2005-11-07 14:20:53 +05:30
|
|
|
# Set up option flags so tests can be selective.
|
|
|
|
|
2007-11-14 03:53:57 +05:30
|
|
|
configfile=${bindir}/.config
|
|
|
|
export OPTIONFLAGS=:$(sed -nr 's/^CONFIG_(.*)=.*/\1/p' $configfile | xargs | sed 's/ /:/g')
|
2005-11-07 14:20:53 +05:30
|
|
|
|
2001-10-31 04:41:20 +05:30
|
|
|
for applet in $applets; do
|
2005-09-23 21:14:46 +05:30
|
|
|
if [ "$applet" = "links" ]; then continue; fi
|
2007-11-14 03:53:57 +05:30
|
|
|
if [ "$applet" != "CVS" -a -d "$tsdir/$applet" ]; then
|
|
|
|
if ! run_applet_tests $applet; then
|
2001-10-31 04:41:20 +05:30
|
|
|
status=1
|
|
|
|
fi
|
|
|
|
fi
|
2005-11-07 14:20:53 +05:30
|
|
|
|
|
|
|
# Is this a new-style test?
|
2007-11-14 03:53:57 +05:30
|
|
|
if [ -f ${applet}.tests ]; then
|
|
|
|
if [ ! -h "$LINKSDIR/$applet" ] && [ "${applet:0:4}" != "all_" ]; then
|
2006-03-16 21:32:06 +05:30
|
|
|
echo "SKIPPED: $applet (not built)"
|
2005-11-07 14:20:53 +05:30
|
|
|
continue
|
|
|
|
fi
|
2007-11-14 03:53:57 +05:30
|
|
|
if PATH="$LINKSDIR":$tsdir:$bindir:$PATH \
|
|
|
|
"${tsdir:-.}/$applet".tests
|
2006-05-25 18:54:02 +05:30
|
|
|
then
|
2007-02-25 06:10:37 +05:30
|
|
|
:
|
2006-05-25 18:54:02 +05:30
|
|
|
else
|
2007-02-25 06:10:37 +05:30
|
|
|
status=1
|
2006-05-25 18:54:02 +05:30
|
|
|
fi
|
2005-09-02 06:11:53 +05:30
|
|
|
fi
|
|
|
|
|
2001-10-31 04:41:20 +05:30
|
|
|
done
|
2006-03-16 21:32:06 +05:30
|
|
|
rm -rf "$LINKSDIR"
|
2001-10-31 04:41:20 +05:30
|
|
|
exit $status
|