blob: 06f9617ec9ff4539b1d213f9c172915e79debb1c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ ! -n "$PERL" ]
then
PERL=perl
fi
incdir=`dirname $0`
. $incdir/test_functions.sh
$PERL -MExtUtils::Command::MM -e "test_harness()" pidl/tests/*.pl || testok $0 1
|