#!/bin/sh set -e cd `dirname $0` cd .. PERL=${PERL:-perl} find t/tlib -name '*.pm' -print | while read pm; do $PERL -Iinc -Ilib -It/tlib -MTest::Unit::Lite -c "$pm" done $PERL -w -Iinc -Ilib -It/tlib t/all_tests.t "$@"