From: Jesse Vincent Date: Mon, 3 Aug 2009 10:33:23 +0000 (+0100) Subject: Add the new "porting" test directory to the test harness X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6b77813cba2b9de442593ad735cdba0fd2a4c5f0;p=p5sagit%2Fp5-mst-13.2.git Add the new "porting" test directory to the test harness (per advice from rgs) --- diff --git a/t/TEST b/t/TEST index 9af8baa..2634485 100755 --- a/t/TEST +++ b/t/TEST @@ -169,6 +169,7 @@ unless (@ARGV) { unless ($::core) { _find_tests('pod'); _find_tests('x2p'); + _find_tests('porting'); _find_tests('japh') if $::torture; _find_tests('t/benchmark') if $::benchmark or $ENV{PERL_BENCHMARK}; } diff --git a/t/harness b/t/harness index 8225d1b..3441112 100644 --- a/t/harness +++ b/t/harness @@ -145,7 +145,7 @@ if (@ARGV) { unless (@tests) { my @seq = ; - my @next = qw(comp cmd run io op uni mro lib); + my @next = qw(comp cmd run io op uni mro lib porting); push @next, 'japh' if $torture; push @next, 'win32' if $^O eq 'MSWin32'; push @next, 'benchmark' if $ENV{PERL_BENCHMARK};