r22637: Install tdbbackup and tdbdump again.
[Samba.git] / source / selftest / test_pidl.sh
blobd143cd6b0a023c257c5e2a91405f4026f8081e41
1 #!/bin/sh
2 if [ ! -n "$PERL" ]
3 then
4 PERL=perl
5 fi
7 incdir=`dirname $0`
8 . $incdir/test_functions.sh
10 if $PERL -e 'eval require Test::More;' > /dev/null 2>&1; then
11 for f in pidl/tests/*.pl; do
12 plantest "$f" none $PERL $f
13 done
14 else
15 echo "Skipping pidl tests - Test::More not installed"