To run the test suite, change to this directory and run
-"./runtest". To only run the test cases for particular applets,
-specify them as parameters to runtest.
+"./runtest". It will run all of the test cases, and list those
+with unexpected outcomes. Adding the -v option will cause it to
+show expected outcomes as well. To only run the test cases for
+particular applets, specify them as parameters to runtest.
The test cases for an applet reside in the subdirectory of the
applet name. The name of the test case should be the assertion
PATH=$(dirname $(pwd)):$PATH
+show_result ()
+{
+ local resolution=$1
+ local testcase=$2
+ local status=0
+
+ if [ $resolution = UPASS -o $resolution = FAIL ]; then
+ status=1
+ fi
+
+ if [ "$verbose" -o $status -eq 1 ]; then
+ echo "$resolution: $testcase"
+ fi
+
+ return $status
+}
+
run_applet_testcase ()
{
local applet=$1
local testname=$(basename $testcase)
if grep -q "^# CONFIG_${uc_applet} is not set$" ../.config; then
- echo "UNSUPPORTED: $testname"
+ show_result UNSUPPORTED $testname
return 0
fi
local feature=`sed -ne 's/.*UNSUPPORTED: //p' $testcase`
if grep -q "^# ${feature} is not set$" ../.config; then
- echo "UNSUPPORTED: $testname"
+ show_result UNSUPPORTED $testname
return 0
fi
fi
pushd tmp >/dev/null
if . ../$testcase >/dev/null 2>&1; then
- echo "${U}PASS: $testname"
- if [ "$U" ]; then
- status=1
- fi
+ show_result ${U}PASS $testname
+ status=$!
else
- echo "${X}FAIL: $testname"
- if [ ! "$X" ]; then
- status=1
- fi
+ show_result ${X}FAIL $testname
+ status=$!
fi
popd >/dev/null
status=0
+if [ x"$1" = x"-v" ]; then
+ verbose=1
+ shift
+fi
+
if [ $# -ne 0 ]; then
applets="$@"
else