diff options
author | Yves Orton <demerphq@gmail.com> | 2006-10-18 22:51:41 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-10-19 20:47:53 +0000 |
commit | 768fd1576db46dc9f6fdf8c63b324c4bc79a426a (patch) | |
tree | bfd4964f0447e02a94fa8cfdbc373fcb0e0fae23 /lib/vmsish.t | |
parent | e0c83546baf9a50ff1d18f07be80decff84542e3 (diff) | |
download | perl-768fd1576db46dc9f6fdf8c63b324c4bc79a426a.tar.gz |
Re: Off by one in the trie code?
Message-ID: <9b18b3110610181151i3ca438cdied769ebaa4255079@mail.gmail.com>
change test files that do a require "./test.pl"; without a BEGIN block
to ensure prototypes are seen, plus fix any breakage this reveals.
p4raw-id: //depot/perl@29056
Diffstat (limited to 'lib/vmsish.t')
-rw-r--r-- | lib/vmsish.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vmsish.t b/lib/vmsish.t index f40e434e54..847d1a6f30 100644 --- a/lib/vmsish.t +++ b/lib/vmsish.t @@ -10,7 +10,7 @@ $perl = VMS::Filespec::vmsify($perl) if $^O eq 'VMS'; my $Invoke_Perl = qq(MCR $perl "-I[-.lib]"); -require "./test.pl"; +BEGIN { require "./test.pl"; } plan(tests => 25); SKIP: { |