Commit f1dc04d3 authored by zach%zachlipton.com's avatar zach%zachlipton.com

And turn this into a stub for runtests.pl.

No review needed on tests (but review will be needed for all test changes after this one)
parent 987edac5
#!/bin/sh
TEST_VERBOSE=0
PART1='use Test::Harness qw(&runtests $verbose); $verbose='
PART2='; runtests @ARGV;'
for f in $*; do
if [ "$f" = "--verbose" ] ; then
TEST_VERBOSE=1
TEST_VERBOSE="--verbose"
fi
done
/usr/bonsaitools/bin/perl -e "${PART1}${TEST_VERBOSE}${PART2}" t/*.t
/usr/bonsaitools/bin/perl runtests.pl ${TEST_VERBOSE}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment