mirror of
https://github.com/samba-team/samba.git
synced 2025-11-19 04:23:48 +03:00
17 lines
298 B
Bash
Executable File
17 lines
298 B
Bash
Executable File
#!/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
|