Fix the Cwd tests for the core.
Rafael Garcia-Suarez [Fri, 25 Jun 2004 08:28:34 +0000 (08:28 +0000)]
p4raw-id: //depot/perl@22993

ext/Cwd/t/cwd.t
ext/Cwd/t/taint.t

index 951126f..816775e 100644 (file)
@@ -3,7 +3,7 @@
 BEGIN {
     chdir 't' if -d 't';
     if ($ENV{PERL_CORE}) {
-       unshift @INC, '../lib';
+       @INC = '../lib';
     }
 }
 use Cwd;
index 9c6748e..be0e374 100644 (file)
@@ -1,10 +1,13 @@
 #!./perl -Tw
 # Testing Cwd under taint mode.
 
-use Cwd;
 BEGIN {
     chdir 't' if -d 't';
+    if ($ENV{PERL_CORE}) {
+       @INC = '../lib';
+    }
 }
+use Cwd;
 
 use strict;
 use Test::More tests => 16;