From 04bc1c416a75cb33a0989551651f451c2f91c008 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 25 May 2007 09:15:09 +0000 Subject: r23137: make it possible to skip the pidl tests with PIDL_TESTS_SKIP=yes metze (This used to be commit 682c19f326b67464c50651bd985a8f75d90d3ba9) --- source4/selftest/test_pidl.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/selftest/test_pidl.sh b/source4/selftest/test_pidl.sh index d143cd6b0a..ca11db590f 100755 --- a/source4/selftest/test_pidl.sh +++ b/source4/selftest/test_pidl.sh @@ -7,7 +7,9 @@ fi incdir=`dirname $0` . $incdir/test_functions.sh -if $PERL -e 'eval require Test::More;' > /dev/null 2>&1; then +if test x"${PIDL_TESTS_SKIP}" = x"yes"; then + echo "Skipping pidl tests - PIDL_TESTS_SKIP=yes" +elif $PERL -e 'eval require Test::More;' > /dev/null 2>&1; then for f in pidl/tests/*.pl; do plantest "$f" none $PERL $f done -- cgit