From: Nicholas Clark Date: Thu, 8 Oct 2009 08:51:36 +0000 (+0200) Subject: Avoid using the strict pragma in retainedlines.t - use may not work yet. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2ab7606449dca127fbb3b9afcd024dac7e6217f1;p=p5sagit%2Fp5-mst-13.2.git Avoid using the strict pragma in retainedlines.t - use may not work yet. --- diff --git a/t/comp/retainedlines.t b/t/comp/retainedlines.t index c66ad74..9d1b40e 100644 --- a/t/comp/retainedlines.t +++ b/t/comp/retainedlines.t @@ -3,12 +3,12 @@ # Check that lines from eval are correctly retained by the debugger BEGIN { - chdir 't' if -d 't'; - @INC = '../lib'; require "./test.pl"; } -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; plan (tests => 65);