3 PATH=$(dirname $(pwd)):$PATH
14 local uc_applet=$(echo $applet | tr a-z A-Z)
15 local testname=$(basename $testcase)
17 if grep -q "^# CONFIG_${uc_applet} is not set$" ../.config; then
18 echo "UNSUPPORTED: $testname"
22 if grep -q "^# UNSUPPORTED: " $testcase; then
23 local feature=`sed -ne 's/.*UNSUPPORTED: //p' $testcase`
25 if grep -q "^# ${feature} is not set$" ../.config; then
26 echo "UNSUPPORTED: $testname"
31 if grep -q "^# XFAIL$" $testcase; then
39 if . ../$testcase >/dev/null 2>&1; then
40 echo "${U}PASS: $testname"
45 echo "${X}FAIL: $testname"
63 for testcase in $applet/*; do
64 if [ "$testcase" = "$applet/CVS" ]; then
68 if run_applet_testcase $applet $testcase; then
87 for applet in $applets; do
88 if [ "$applet" != CVS -a -d "$applet" ]; then
89 if run_applet_tests $applet; then