summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-10-08 10:47:00 +0200
committerNicholas Clark <nick@ccl4.org>2009-10-08 14:35:40 +0200
commite07a7c003f0f2bd82f87fe6d0cf80f6ca8875cf3 (patch)
treef703e54e44c80242827457734747ad7e1413a3fb
parent2eaa221022c8a9ff79fb91fbe7a3e44eeaebff21 (diff)
downloadperl-e07a7c003f0f2bd82f87fe6d0cf80f6ca8875cf3.tar.gz
Avoid using the strict pragma in colon.t - use may not work yet.
-rw-r--r--t/comp/colon.t9
1 files changed, 3 insertions, 6 deletions
diff --git a/t/comp/colon.t b/t/comp/colon.t
index 122e33ead9..faa5e77337 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.