summaryrefslogtreecommitdiffstats
path: root/t/001compile.t
diff options
context:
space:
mode:
authorzach%zachlipton.com <>2001-10-06 10:23:38 +0200
committerzach%zachlipton.com <>2001-10-06 10:23:38 +0200
commit99255fa2b366d63d69d80ad9de856f21a02937ff (patch)
tree227373a42522fc45b231c1cd672f92731592dee9 /t/001compile.t
parentdcb0fb5b9ed21bdaae25b4ba77d847820aafb882 (diff)
downloadbugzilla-99255fa2b366d63d69d80ad9de856f21a02937ff.tar.gz
bugzilla-99255fa2b366d63d69d80ad9de856f21a02937ff.tar.xz
Get rid of our which causes errors on 5.005.
No review needed for tests at this time. NOT PART OF BUILD
Diffstat (limited to 't/001compile.t')
-rw-r--r--t/001compile.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/001compile.t b/t/001compile.t
index 8886d685b..fa8bbae06 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -40,10 +40,14 @@ BEGIN { use Support::Files; }
BEGIN { $tests = @Support::Files::testitems + 4; }
BEGIN { use Test::More tests => $tests; }
+sub foo {
+$warnings = "foo"; #oy!
+}
+
# First now we test the scripts
@testitems = @Support::Files::testitems;
-our $warnings;
+my $warnings;
my $verbose = $::ENV{VERBOSE};
$perlapp=$^X;
foreach $file (@testitems) {