2005-09-02 06:11:53 +05:30
|
|
|
# Simple test harness infrastructurei for BusyBox
|
|
|
|
#
|
|
|
|
# Copyright 2005 by Rob Landley
|
|
|
|
#
|
|
|
|
# License is GPLv2, see LICENSE in the busybox tarball for full license text.
|
|
|
|
|
|
|
|
# The "testing" function uses one environment variable:
|
|
|
|
# COMMAND = command to execute
|
|
|
|
#
|
|
|
|
# The function takes five arguments:
|
|
|
|
# $1) Description to display when running command
|
|
|
|
# $2) Command line arguments to command"
|
|
|
|
# $3) Expected result (on stdout)"
|
|
|
|
# $4) Data written to file "input"
|
|
|
|
# $5) Data written to stdin
|
|
|
|
#
|
|
|
|
# The exit value of testing is the exit value of the command it ran.
|
|
|
|
#
|
|
|
|
# The environment variable "FAILCOUNT" contains a cumulative total of the
|
|
|
|
#
|
|
|
|
|
2005-09-24 06:22:58 +05:30
|
|
|
verbose=0
|
|
|
|
debug=0
|
|
|
|
force=0
|
|
|
|
for x in "$@" ; do
|
|
|
|
case "$x" in
|
|
|
|
-v|--verbose) verbose=1; shift;;
|
|
|
|
-d|--debug) debug=1; shift;;
|
|
|
|
-f|--force) force=1; shift;;
|
|
|
|
--) break;;
|
|
|
|
-*) echo "Unknown option '$x'"; exit 1;;
|
|
|
|
*) break;;
|
|
|
|
esac
|
|
|
|
done
|
2005-09-02 06:11:53 +05:30
|
|
|
|
2005-09-24 06:22:58 +05:30
|
|
|
if [ -n "$VERBOSE" ] ; then
|
|
|
|
verbose=1
|
|
|
|
fi
|
|
|
|
if [ -n "$DEBUG" ] ; then
|
|
|
|
debug=1
|
2005-09-02 06:11:53 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
export FAILCOUNT=0
|
|
|
|
|
2005-09-23 21:14:46 +05:30
|
|
|
# Helper functions
|
|
|
|
|
|
|
|
config_is_set ()
|
|
|
|
{
|
|
|
|
local uc_what=$(echo ${1?} | tr a-z A-Z)
|
|
|
|
grep -q "^[ ]*CONFIG_${uc_what}" ${bindir:-..}/.config || \
|
|
|
|
grep -q "^[ ]*BB_CONFIG_${uc_what}" ${bindir:-..}/.config
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
# The testing function
|
|
|
|
|
2005-10-06 18:18:03 +05:30
|
|
|
testing ()
|
2005-09-02 06:11:53 +05:30
|
|
|
{
|
|
|
|
if [ $# -ne 5 ]
|
|
|
|
then
|
|
|
|
echo "Test $1 has the wrong number of arguments" >&2
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2005-10-06 18:18:03 +05:30
|
|
|
if [ $debug -eq 1 ] ; then
|
2005-09-24 06:22:58 +05:30
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
2005-10-06 18:18:03 +05:30
|
|
|
if [ -n "$_BB_CONFIG_DEP" ] && [ ${force} -eq 0 ]
|
2005-09-23 21:14:46 +05:30
|
|
|
then
|
|
|
|
if ! config_is_set "$_BB_CONFIG_DEP"
|
|
|
|
then
|
2005-09-24 06:22:58 +05:30
|
|
|
echo "SKIPPED: $1"
|
2005-09-23 21:14:46 +05:30
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
echo -ne "$3" > expected
|
|
|
|
echo -ne "$4" > input
|
|
|
|
echo -n -e "$5" | eval "$COMMAND $2" > actual
|
|
|
|
RETVAL=$?
|
|
|
|
|
|
|
|
cmp expected actual > /dev/null
|
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
2005-09-24 06:22:58 +05:30
|
|
|
((FAILCOUNT++))
|
2005-09-04 16:40:37 +05:30
|
|
|
echo "FAIL: $1"
|
2005-10-06 18:18:03 +05:30
|
|
|
if [ $verbose -eq 1 ]
|
2005-09-02 06:11:53 +05:30
|
|
|
then
|
|
|
|
diff -u expected actual
|
|
|
|
fi
|
|
|
|
else
|
2005-09-04 16:40:37 +05:30
|
|
|
echo "PASS: $1"
|
2005-09-02 06:11:53 +05:30
|
|
|
fi
|
|
|
|
rm -f input expected actual
|
|
|
|
|
2005-10-06 18:18:03 +05:30
|
|
|
if [ $debug -eq 1 ] ; then
|
2005-09-24 06:22:58 +05:30
|
|
|
set +x
|
|
|
|
fi
|
|
|
|
|
2005-09-02 06:11:53 +05:30
|
|
|
return $RETVAL
|
|
|
|
}
|