[ID 20000911.009] t/pod/*.t tests not run by harness or make test
Yitzchak Scott-Thoennes [Mon, 11 Sep 2000 17:56:47 +0000 (10:56 -0700)]
Message-Id: <200009120056.e8C0ulZ21635@garcia.efn.org>

p4raw-id: //depot/perl@7062

t/TEST
t/harness

diff --git a/t/TEST b/t/TEST
index 0b674af..41390c0 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -24,7 +24,7 @@ $ENV{EMXSHELL} = 'sh';        # For OS/2
 
 if ($#ARGV == -1) {
     @ARGV = split(/[ \n]/,
-      `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pragma/*.t lib/*.t`);
+      `echo base/*.t comp/*.t cmd/*.t io/*.t; echo op/*.t pod/*.t pragma/*.t; echo lib/*.t`);
 }
 
 %infinite = ( 'comp/require.t', 1, 'op/bop.t', 1, 'lib/hostname.t', 1 ); 
index e1a4dd7..b25f519 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -37,7 +37,7 @@ foreach (keys %datahandle) {
 }
 
 @tests = @ARGV;
-@tests = <base/*.t comp/*.t cmd/*.t io/*.t op/*.t pragma/*.t lib/*.t> unless @tests;
+@tests = <base/*.t comp/*.t cmd/*.t io/*.t op/*.t pod/*.t pragma/*.t lib/*.t> unless @tests;
 
 Test::Harness::runtests @tests;
 exit(0) unless -e "../testcompile";