From f71f21fa0544dcf1a0de5f3c3293c18df0b2f9cc Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 28 Dec 2005 22:40:33 +0000 Subject: r12552: Remove use of Test::Harness - we're not printing the result summaries on success anyway. Instead, call the scripts directly. (This used to be commit a83a38eab29cc289e53b1f9790a61e61d684f547) --- source4/script/tests/test_pidl.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/script/tests/test_pidl.sh b/source4/script/tests/test_pidl.sh index c48acf98cf..a17e3871fe 100755 --- a/source4/script/tests/test_pidl.sh +++ b/source4/script/tests/test_pidl.sh @@ -7,9 +7,10 @@ fi 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 -- cgit