Author: jelmer Date: 2005-12-28 22:40:33 +0000 (Wed, 28 Dec 2005) New Revision: 12552
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12552 Log: Remove use of Test::Harness - we're not printing the result summaries on success anyway. Instead, call the scripts directly. Modified: branches/SAMBA_4_0/source/script/tests/test_pidl.sh Changeset: Modified: branches/SAMBA_4_0/source/script/tests/test_pidl.sh =================================================================== --- branches/SAMBA_4_0/source/script/tests/test_pidl.sh 2005-12-28 22:31:26 UTC (rev 12551) +++ branches/SAMBA_4_0/source/script/tests/test_pidl.sh 2005-12-28 22:40:33 UTC (rev 12552) @@ -7,9 +7,10 @@ incdir=`dirname $0` . $incdir/test_functions.sh +failed=0 for f in pidl/tests/*.pl; do - testit "$f" $PERL -MExtUtils::Command::MM -e "test_harness()" $f || failed=`expr $failed + 1` + testit "$f" $PERL $f || failed=`expr $failed + 1` done testok $0 $failed
