From: Nicholas Clark <nick@ccl4.org>
Date: Thu, 8 Oct 2009 08:47:00 +0000 (+0200)
Subject: Avoid using the strict pragma in colon.t - use may not work yet.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e07a7c003f0f2bd82f87fe6d0cf80f6ca8875cf3;p=p5sagit%2Fp5-mst-13.2.git

Avoid using the strict pragma in colon.t - use may not work yet.
---

diff --git a/t/comp/colon.t b/t/comp/colon.t
index 122e33e..faa5e77 100644
--- a/t/comp/colon.t
+++ b/t/comp/colon.t
@@ -7,12 +7,9 @@
 #	-- Robin Barker <rmb@cise.npl.co.uk>
 #
 
-BEGIN {
-    chdir 't' if -d 't';
-    @INC = '../lib';
-}
-
-use strict;
+# Uncomment this for testing, but don't leave it in for "production", as
+# we've not yet verified that use works.
+# use strict;
 
 $_ = '';	# to avoid undef warning on m// etc.