From: Yitzchak Scott-Thoennes Date: Mon, 11 Sep 2000 17:56:47 +0000 (-0700) Subject: [ID 20000911.009] t/pod/*.t tests not run by harness or make test X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bc00ec502eb91c52ac25daa943fa61a77d43c36b;p=p5sagit%2Fp5-mst-13.2.git [ID 20000911.009] t/pod/*.t tests not run by harness or make test Message-Id: <200009120056.e8C0ulZ21635@garcia.efn.org> p4raw-id: //depot/perl@7062 --- diff --git a/t/TEST b/t/TEST index 0b674af..41390c0 100755 --- 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 ); diff --git a/t/harness b/t/harness index e1a4dd7..b25f519 100644 --- a/t/harness +++ b/t/harness @@ -37,7 +37,7 @@ foreach (keys %datahandle) { } @tests = @ARGV; -@tests = unless @tests; +@tests = unless @tests; Test::Harness::runtests @tests; exit(0) unless -e "../testcompile";