From: Rafael Garcia-Suarez Date: Thu, 9 Dec 2004 09:57:42 +0000 (+0000) Subject: Fix test to cope with the previous h2ph change. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3c92c9627796cd16c5fbd7af8565ba482fc80938;p=p5sagit%2Fp5-mst-13.2.git Fix test to cope with the previous h2ph change. p4raw-id: //depot/perl@23629 --- diff --git a/t/lib/h2ph.pht b/t/lib/h2ph.pht index e03cbb9..7b29896 100644 --- a/t/lib/h2ph.pht +++ b/t/lib/h2ph.pht @@ -4,13 +4,13 @@ no warnings 'redefine'; unless(defined(&SQUARE)) { sub SQUARE { - local($x) = @_; + my($x) = @_; eval q((($x)*($x))); } } unless(defined(&ERROR)) { eval 'sub ERROR { - local($x) = @_; + my($x) = @_; eval q( &fprintf( &stderr, \\"%s\\\\n\\", $x->[2][3][0])); }' unless defined(&ERROR); } @@ -19,12 +19,12 @@ unless(defined(&_H2PH_H_)) { # "$Revision h2ph.h,v 1.0 98/05/04 20:42:14 billy $" undef(&MAX) if defined(&MAX); eval 'sub MAX { - local($a,$b) = @_; + my($a,$b) = @_; eval q((($a) > ($b) ? ($a) : ($b))); }' unless defined(&MAX); if(defined(&__SOME_UNIMPORTANT_PROPERTY)) { eval 'sub MIN { - local($a,$b) = @_; + my($a,$b) = @_; eval q((($a) < ($b) ? ($a) : ($b))); }' unless defined(&MIN); }