summaryrefslogtreecommitdiff
path: root/t/comp/parser.t
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2006-10-18 22:51:41 +0200
committerNicholas Clark <nick@ccl4.org>2006-10-19 20:47:53 +0000
commit768fd1576db46dc9f6fdf8c63b324c4bc79a426a (patch)
treebfd4964f0447e02a94fa8cfdbc373fcb0e0fae23 /t/comp/parser.t
parente0c83546baf9a50ff1d18f07be80decff84542e3 (diff)
downloadperl-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 't/comp/parser.t')
-rw-r--r--t/comp/parser.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/comp/parser.t b/t/comp/parser.t
index a05085879f..2599bdf5b3 100644
--- a/t/comp/parser.t
+++ b/t/comp/parser.t
@@ -8,7 +8,7 @@ BEGIN {
@INC = '../lib';
}
-require "./test.pl";
+BEGIN { require "./test.pl"; }
plan( tests => 60 );
eval '%@x=0;';