Add missing test boilerplates to new MakeMaker tests
Rafael Garcia-Suarez [Mon, 8 Jun 2009 08:35:48 +0000 (10:35 +0200)]
lib/ExtUtils/t/arch_check.t
lib/ExtUtils/t/miniperl.t
lib/ExtUtils/t/pm_to_blib.t
lib/ExtUtils/t/pod2man.t

index e4b3aef..deb289a 100644 (file)
@@ -1,5 +1,12 @@
 #!/usr/bin/perl -w
 
+BEGIN {
+    if ($ENV{PERL_CORE}) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib lib);
+    }
+}
+
 use strict;
 use lib 't/lib';
 
index 2334eb0..fbd801c 100644 (file)
@@ -3,6 +3,13 @@
 # Test that we can build modules as miniperl.
 # This mostly means no XS modules.
 
+BEGIN {
+    if ($ENV{PERL_CORE}) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib lib);
+    }
+}
+
 use strict;
 use lib 't/lib';
 
index 66ef879..7c28781 100644 (file)
@@ -2,6 +2,13 @@
 
 # Ensure pm_to_blib runs at the right times.
 
+BEGIN {
+    if ($ENV{PERL_CORE}) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib lib);
+    }
+}
+
 use strict;
 use lib 't/lib';
 
index 1632234..fa533bd 100644 (file)
@@ -1,5 +1,12 @@
 #!/usr/bin/perl -w
 
+BEGIN {
+    if ($ENV{PERL_CORE}) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib);
+    }
+}
+
 # Test our simulation of pod2man
 
 use strict;