Change 11535 by jhi@alpha on 2001/08/01 16:05:56

        Subject: [PATCH: perl@11523] fixups for t/harness
        From: Prymmer/Kahn <[EMAIL PROTECTED]>
        Date: Wed, 1 Aug 2001 09:24:23 -0700 (PDT)
        Message-ID: <[EMAIL PROTECTED]>

Affected files ...

... //depot/perl/t/harness#24 edit

Differences ...

==== //depot/perl/t/harness#24 (text) ====
Index: perl/t/harness
--- perl/t/harness.~1~  Wed Aug  1 10:15:05 2001
+++ perl/t/harness      Wed Aug  1 10:15:05 2001
@@ -5,10 +5,9 @@
 
 BEGIN {
     chdir 't' if -d 't';
-    unshift @INC, '../lib';
+    @INC = '../lib';              # pick up only this build's lib
     $ENV{PERL5LIB} = '../lib';    # so children will see it too
 }
-use lib '../lib';
 
 use Test::Harness;
 
@@ -35,18 +34,26 @@
      unlink "$_.t";
 }
 
+my @tests = ();
+
 if (@ARGV) {
     @tests = @ARGV;
 } else {
     unless (@tests) {
-       @tests = <base/*.t comp/*.t cmd/*.t run/*.t io/*.t op/*.t lib/*.t>;
+       push @tests, <base/*.t>;
+        push @tests, <comp/*.t>;
+        push @tests, <cmd/*.t>;
+        push @tests, <run/*.t>;
+        push @tests, <io/*.t>;
+        push @tests, <op/*.t>;
+        push @tests, <lib/*.t>;
        use File::Spec;
        my $updir = File::Spec->updir;
-       my $mani  = File::Spec->catdir(File::Spec->updir, "MANIFEST");
+       my $mani  = File::Spec->catfile(File::Spec->updir, "MANIFEST");
        if (open(MANI, $mani)) {
            while (<MANI>) { # similar code in t/TEST
            if (m!^(ext/\S+/([^/]+\.t|test\.pl)|lib/\S+?(\.t|test\.pl))\s!) {
-                   push @tests, File::Spec->catdir($updir, $1);
+                   push @tests, File::Spec->catfile($updir, $1);
                }
            }
        } else {
End of Patch.

Reply via email to