Discussion:
Cryptic error when LWP isn't available
Justin Erenkrantz
2005-11-02 06:34:02 UTC
Permalink
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
Geoffrey Young
2005-11-02 12:14:53 UTC
Permalink
Post by Justin Erenkrantz
httpd-test gives a really cryptic error message when LWP isn't
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
Philip M. Gollucci
2005-11-02 15:51:37 UTC
Permalink
Post by Justin Erenkrantz
httpd-test gives a really cryptic error message when LWP isn't
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 (***@p6m7g8.com) 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
Stas Bekman
2005-11-02 20:17:55 UTC
Permalink
Post by Justin Erenkrantz
httpd-test gives a really cryptic error message when LWP isn't
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:***@stason.org 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/
Loading...