diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-08 10:47:00 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-08 14:35:40 +0200 |
commit | e07a7c003f0f2bd82f87fe6d0cf80f6ca8875cf3 (patch) | |
tree | f703e54e44c80242827457734747ad7e1413a3fb | |
parent | 2eaa221022c8a9ff79fb91fbe7a3e44eeaebff21 (diff) | |
download | perl-e07a7c003f0f2bd82f87fe6d0cf80f6ca8875cf3.tar.gz |
Avoid using the strict pragma in colon.t - use may not work yet.
-rw-r--r-- | t/comp/colon.t | 9 |
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. |