- support make check V=1 to run the checks in verbose mode

- pass verbose from runtest to testing.sh
This commit is contained in:
Bernhard Reutner-Fischer
2005-10-06 12:48:03 +00:00
parent cf95e0b2d5
commit e34e8782a9
3 changed files with 20 additions and 8 deletions

View File

@@ -37,7 +37,7 @@ run_applet_testcase ()
if [ $? != 0 ] ; then
echo FAIL: $testname
if [ "$verbose" = 1 ]; then
if [ $verbose -gt 0 ]; then
cat .logfile.txt
#exit 1;
fi;
@@ -77,14 +77,16 @@ run_applet_tests ()
status=0
verbose=0
if [ x"$1" = x"-v" ]; then
verbose=1
export VERBOSE=$verbose
shift
fi
if [ $# -ne 0 ]; then
applets="$@"
applets=$(cd $srcdir ; for i in $@; do ls ${i}* ; done)
else
applets=$(ls $srcdir)
fi