blob: 5b460f3de45c313a7929ce9ff48642b46859fe28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!./perl
# We suppose that perl _mostly_ works at this moment, so may use
# sophisticated testing.
# Note that _before install_ you may need to run it with -I ../lib flag
use lib '../lib';
use Test::Harness;
$Test::Harness::switches = ""; # Too much noise otherwise
$Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v';
@tests = @ARGV;
@tests = <*/*.t> unless @tests;
Test::Harness::runtests @tests;
|