The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/sh

for test in *.t ;do
  if [ $test = "pod.t"  -o  $test = "pod_coverage.t" ]; then
     continue
  fi
  perl -w $test 1
done