This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add the new "porting" test directory to the test harness
authorJesse Vincent <jesse@bestpractical.com>
Mon, 3 Aug 2009 10:33:23 +0000 (11:33 +0100)
committerJesse Vincent <jesse@bestpractical.com>
Mon, 3 Aug 2009 11:09:16 +0000 (12:09 +0100)
(per advice from rgs)

t/TEST
t/harness

diff --git a/t/TEST b/t/TEST
index 9af8baa..2634485 100755 (executable)
--- 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};
     }
index 8225d1b..3441112 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -145,7 +145,7 @@ if (@ARGV) {
     unless (@tests) {
        my @seq = <base/*.t>;
 
-       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};