mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
f71f21fa05
on success anyway. Instead, call the scripts directly.
(This used to be commit a83a38eab2
)
17 lines
216 B
Bash
Executable File
17 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -n "$PERL" ]
|
|
then
|
|
PERL=perl
|
|
fi
|
|
|
|
incdir=`dirname $0`
|
|
. $incdir/test_functions.sh
|
|
|
|
failed=0
|
|
|
|
for f in pidl/tests/*.pl; do
|
|
testit "$f" $PERL $f || failed=`expr $failed + 1`
|
|
done
|
|
|
|
testok $0 $failed
|