|
|
Choosing A Webhost: |
Re: cvs commit: modperl-2.0/t/response/TestDirective perlrequire.pm: msg#00121apache.mod-perl.devel
Randy Kobes wrote: On Wed, 16 Apr 2003, Stas Bekman wrote: Great! The other problems Correct. What's the error_log says? It still should be skipped. I've messed with the skip rules a bit lately, since it was skipping on the platforms that did have APR::PerlIO working. The module is always available, though it won't boot if perlio_layers aren't available. So I though that this will work: eval { require APR::PerlIO }; plan $r, tests => $tests, have { "This Perl build doesn't support PerlIO layers" => APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED() }; APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED is defined in APR/PerlIO.pm. For some reason I thought that even though the module fails to boot its XS layer its perl functions would be available. If you apply this patch, does it skips OK: Index: t/response/TestAPR/perlio.pm =================================================================== RCS file: /home/cvs/modperl-2.0/t/response/TestAPR/perlio.pm,v retrieving revision 1.17 diff -u -r1.17 perlio.pm --- t/response/TestAPR/perlio.pm 8 Apr 2003 02:05:34 -0000 1.17 +++ t/response/TestAPR/perlio.pm 16 Apr 2003 04:48:54 -0000 @@ -15,6 +15,8 @@ #XXX: you can set to zero if largefile support is not enabled in Perl use constant LARGE_FILES_CONFLICT => 1; +use Config; + sub handler { my $r = shift; @@ -23,11 +25,11 @@ $tests += $lfs_tests unless LARGE_FILES_CONFLICT; - eval { require APR::PerlIO }; - plan $r, tests => $tests, have { "This Perl build doesn't support PerlIO layers" => - APR::PerlIO::PERLIO_LAYERS_ARE_ENABLED() }; + ($Config{useperlio} && $] >= 5.00703) }; + + require APR::PerlIO; my $vars = Apache::Test::config()->{vars}; my $dir = catfile $vars->{documentroot}, "perlio"; __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:stas@xxxxxxxxxx http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: cvs commit: modperl-2.0/t/response/TestDirective perlrequire.pm, Randy Kobes |
|---|---|
| Next by Date: | Re: cvs commit: modperl-2.0/t/response/TestDirective perlrequire.pm, Stas Bekman |
| Previous by Thread: | Re: cvs commit: modperl-2.0/t/response/TestDirective perlrequire.pm, Randy Kobes |
| Next by Thread: | Re: cvs commit: modperl-2.0/t/response/TestDirective perlrequire.pm, Stas Bekman |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
Free MagazinesCisco NewsReceive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business. subscribe Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field. subscribe The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business. subscribe Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. subscribe Total Telecom Total Telecom is "The Economist of the communications industry". subscribe |