mirror of
https://github.com/samba-team/samba.git
synced 2025-11-01 16:23:49 +03:00
19 lines
466 B
Bash
Executable File
19 lines
466 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -n "$PERL" ]
|
|
then
|
|
PERL=perl
|
|
fi
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
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 $samba4srcdir/pidl/tests/*.pl; do
|
|
plantest "`basename $f`" none $PERL $f "|" $samba4srcdir/script/harness2subunit.pl
|
|
done
|
|
else
|
|
echo "Skipping pidl tests - Test::More not installed"
|
|
fi
|