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 /ext/POSIX/t/posix.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 'ext/POSIX/t/posix.t')
-rw-r--r-- | ext/POSIX/t/posix.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/t/posix.t b/ext/POSIX/t/posix.t index 58b3a4843d..6d7da842b9 100644 --- a/ext/POSIX/t/posix.t +++ b/ext/POSIX/t/posix.t @@ -10,7 +10,7 @@ BEGIN { } } -require "./test.pl"; +BEGIN { require "./test.pl"; } plan(tests => 65); use POSIX qw(fcntl_h signal_h limits_h _exit getcwd open read strftime write |