Adjust test preambles for Hash::Util::FieldHash tests to change
Rafael Garcia-Suarez [Mon, 26 Jun 2006 16:50:58 +0000 (16:50 +0000)]
the @INC path only when testing inside the core

p4raw-id: //depot/perl@28432

ext/Hash/Util/FieldHash/t/01_load.t
ext/Hash/Util/FieldHash/t/02_function.t
ext/Hash/Util/FieldHash/t/03_class.t
ext/Hash/Util/FieldHash/t/04_thread.t
ext/Hash/Util/FieldHash/t/05_perlhook.t
ext/Hash/Util/FieldHash/t/10_hash.t
ext/Hash/Util/FieldHash/t/11_hashassign.t
ext/Hash/Util/FieldHash/t/12_hashwarn.t

index 952f2a3..a881cea 100644 (file)
@@ -1,8 +1,10 @@
 #!perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use strict; use warnings;
index a89bf2e..877d85e 100644 (file)
@@ -1,8 +1,10 @@
 #!perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use strict; use warnings;
index 027b43c..f064fcc 100644 (file)
@@ -1,8 +1,10 @@
 #!perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use strict; use warnings;
index 0693522..5197b90 100644 (file)
@@ -1,8 +1,10 @@
 #!perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use strict; use warnings;
index 73f8654..bc9ff95 100644 (file)
@@ -1,8 +1,10 @@
 #!perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use strict; use warnings;
index 80de722..5c56675 100644 (file)
@@ -1,8 +1,10 @@
 #!./perl -w
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use Test::More;
index 205f36e..a42682f 100644 (file)
@@ -1,8 +1,10 @@
 #!./perl -w
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use Test::More;
index 94509d2..9d4474d 100644 (file)
@@ -1,8 +1,10 @@
 #!./perl
 
 BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
 }
 
 use Test::More;