1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
#!/usr/bin/perl
# run all "t" tests
# must be run from parent of t/
# author: Phil M Perry
# adapted from PDF::Builder tool suite
use strict;
use warnings;
our $VERSION = '1.003'; # VERSION
our $LAST_UPDATE = '0.12'; # manually update whenever code is changed
my $perl = 'perl'; # run Perl command. add path, etc. if needed
# command line flags, mutually exclusive:
# -raw show full output of each t-test run
# -noOK exclude "ok" lines so can easily spot error lines DEFAULT
my @test_list = qw(
Basics
Colspan
manifest
PDF-Table
pod
table
);
# override full list above, and run just one or two tests
#@test_list = qw( Colspan );
my @need_T = qw(
Colspan
manifest
);
# perl t/<name>.t will run it
my $type;
# one command line arg allowed (-noOK is default)
if (scalar @ARGV == 0) {
$type = '-noOK';
} elsif (scalar @ARGV == 1) {
if ($ARGV[0] eq '-raw') {
$type = '-raw';
} elsif ($ARGV[0] eq '-noOK') {
# default
$type = '-noOK';
} else {
die "Unknown command line argument '$ARGV[0]'\n";
}
} else {
die "0 or 1 argument permitted. -noOK is default.\n";
}
my $TT = '';
foreach my $file (@test_list) {
$TT = '';
foreach (@need_T) {
if ($_ eq $file) {
$TT = '-T';
last;
}
}
my @results = `$perl $TT t/$file.t`;
# TBD: detect if a FAILED test, and remark at end if any failures
print "\nt/$file.t\n";
if ($type eq '-raw') {
print "@results";
} else {
# -noOK remove any lines which start with "ok"
foreach my $line (@results) {
if ($line !~ m/^ok/) {
print $line;
}
}
}
}
|