diff options
author | zach%zachlipton.com <> | 2001-10-06 10:23:38 +0200 |
---|---|---|
committer | zach%zachlipton.com <> | 2001-10-06 10:23:38 +0200 |
commit | 99255fa2b366d63d69d80ad9de856f21a02937ff (patch) | |
tree | 227373a42522fc45b231c1cd672f92731592dee9 /t | |
parent | dcb0fb5b9ed21bdaae25b4ba77d847820aafb882 (diff) | |
download | bugzilla-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')
-rw-r--r-- | t/001compile.t | 6 |
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) { |