summaryrefslogtreecommitdiff
path: root/source4/script/tests/test_pidl.sh
blob: d143cd6b0a023c257c5e2a91405f4026f8081e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
if [ ! -n "$PERL" ]
then
	PERL=perl
fi

incdir=`dirname $0`
. $incdir/test_functions.sh

if $PERL -e 'eval require Test::More;' > /dev/null 2>&1; then
  for f in pidl/tests/*.pl; do
     plantest "$f" none $PERL $f
  done
else 
   echo "Skipping pidl tests - Test::More not installed"
fi