Set @INC to ../lib if we're running in t, else modules can't be required.
Nicholas Clark [Sat, 5 Sep 2009 19:23:14 +0000 (20:23 +0100)]
(Either explicity, or the possible implicit require utf8; inside the regexp
engine.)

t/TEST

diff --git a/t/TEST b/t/TEST
index e293a5c..4eebf9a 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -80,6 +80,9 @@ our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
 }
 
 chdir 't' if -f 't/TEST';
+if (-f 'TEST' && -f 'harness' && -d '../lib') {
+    @INC = '../lib';
+}
 
 die "You need to run \"make test\" first to set things up.\n"
   unless -e 'perl' or -e 'perl.exe' or -e 'perl.pm';