Re: Cryptic error when LWP isn't available

2005-11-02 Thread Geoffrey Young


Justin Erenkrantz wrote:
 httpd-test gives a really cryptic error message when LWP isn't
 installed:
 
 Use of uninitialized value in concatenation (.) or string at
 .../Apache-Test/lib/Apache/TestHarness.pm line 121.
 
 Be nice if we could fix that.  It seems that $_ is trounced by
 $self-run_t().  My perl-fu doesn't have an elegant solution other than
 saving $_ before run_t() and then restoring it after.  After I did that,
 I got the 'LWP isn't available' warnings.  *light bulb*
 
 Once I installed LWP, the error disappeared for whatever reason.
 
 Does anyone with perl-fu have a real solution?

I'll figure one out sometime today or tomorrow.  thanks for reporting it :)

--Geoff


Re: Cryptic error when LWP isn't available

2005-11-02 Thread Philip M. Gollucci

Justin Erenkrantz wrote:

httpd-test gives a really cryptic error message when LWP isn't
installed:

Use of uninitialized value in concatenation (.) or string at
.../Apache-Test/lib/Apache/TestHarness.pm line 121.

Be nice if we could fix that.  It seems that $_ is trounced by
$self-run_t().  My perl-fu doesn't have an elegant solution other than
saving $_ before run_t() and then restoring it after.  After I did that,
I got the 'LWP isn't available' warnings.  *light bulb*

Once I installed LWP, the error disappeared for whatever reason.

Does anyone with perl-fu have a real solution?  -- justin

You my try adding

local $_;

to $self-run_t()


--
END

What doesn't kill us can only make us stronger.
Nothing is impossible.

Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
   http://www.liquidation.com
   http://www.uksurplus.com
   http://www.govliquidation.com
   http://www.gowholesale.com



Re: Cryptic error when LWP isn't available

2005-11-02 Thread Stas Bekman

Justin Erenkrantz wrote:

httpd-test gives a really cryptic error message when LWP isn't
installed:

Use of uninitialized value in concatenation (.) or string at
.../Apache-Test/lib/Apache/TestHarness.pm line 121.

Be nice if we could fix that.  It seems that $_ is trounced by
$self-run_t().  My perl-fu doesn't have an elegant solution other than
saving $_ before run_t() and then restoring it after.  After I did that,
I got the 'LWP isn't available' warnings.  *light bulb*

Once I installed LWP, the error disappeared for whatever reason.

Does anyone with perl-fu have a real solution?  -- justin


I ditched $_, see if it solves the problem.

--
_
Stas Bekman mailto:[EMAIL PROTECTED]  http://stason.org/
MailChannels: Assured Messaging(TM) http://mailchannels.com/
The Practical mod_perl book   http://modperlbook.org/
http://perl.apache.org/ http://perl.org/ http://logilune.com/



Cryptic error when LWP isn't available

2005-11-01 Thread Justin Erenkrantz
httpd-test gives a really cryptic error message when LWP isn't
installed:

Use of uninitialized value in concatenation (.) or string at
.../Apache-Test/lib/Apache/TestHarness.pm line 121.

Be nice if we could fix that.  It seems that $_ is trounced by
$self-run_t().  My perl-fu doesn't have an elegant solution other than
saving $_ before run_t() and then restoring it after.  After I did that,
I got the 'LWP isn't available' warnings.  *light bulb*

Once I installed LWP, the error disappeared for whatever reason.

Does anyone with perl-fu have a real solution?  -- justin