You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@perl.apache.org by Markus Wichitill <ma...@gmx.de> on 2004/12/04 13:59:58 UTC

[mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

t/apr-ext/finfo and t/apr-ext/perlio fail with taint issues on today's SVN, 
when run alone or as part of the whole test suite:

$ perl t/TEST -v t/apr-ext/finfo t/apr-ext/perlio
[...]
t/apr-ext/finfo.....Insecure dependency in require while running with -T 
switch at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
BEGIN failed--compilation aborted at 
/usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
Compilation failed in require at t/apr-ext/finfo.t line 7.
BEGIN failed--compilation aborted at t/apr-ext/finfo.t line 7.
dubious
   Test returned status 9 (wstat 2304, 0x900)
t/apr-ext/perlio....1..12
# Running under perl version 5.008006 for linux
# Current time local: Sat Dec  4 14:03:56 2004
# Current time GMT:   Sat Dec  4 13:03:56 2004
# Using Test.pm version 1.25
# Using Apache/Test.pm version 1.17
Insecure dependency in mkdir while running with -T switch at 
/usr/local/perl/lib/File/Path.pm line 159.
dubious
   Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 1-12
   Failed 12/12 tests, 0.00% okay
Failed Test        Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/apr-ext/finfo.t     9  2304    ??   ??       %  ??
t/apr-ext/perlio.t    2   512    12   24 200.00%  1-12
Failed 2/2 test scripts, 0.00% okay. 12/12 subtests failed, 0.00% okay.
[warning] server localhost:8529 shutdown
[  error] error running tests (please examine t/logs/error_log)

Nothing relevant in the error_log.

mp2bug data is the same as in the previous topic: 
http://article.gmane.org/gmane.comp.apache.mod-perl.devel/5936/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus Wichitill wrote:
> Stas Bekman wrote:
> 
>> Markus, please update your svn, those were problems in Apache-Test, 
>> now should be fixed.
> 
> 
> Yep.

Excellent. Thanks for testing, Markus.

> I don't know if this makes sense, but this seems to also have fixed the 
> hanging in t/modules/proxy on Linux mentioned in
> http://article.gmane.org/gmane.comp.apache.mod-perl.devel/5967/ and
> http://article.gmane.org/gmane.comp.apache.mod-perl.devel/5954/

Since I was never able to reproduce that I can't tell.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Markus Wichitill <ma...@gmx.de>.
Stas Bekman wrote:
> Markus, please update your svn, those were problems in Apache-Test, now 
> should be fixed.

Yep.

I don't know if this makes sense, but this seems to also have fixed the 
hanging in t/modules/proxy on Linux mentioned in
http://article.gmane.org/gmane.comp.apache.mod-perl.devel/5967/ and
http://article.gmane.org/gmane.comp.apache.mod-perl.devel/5954/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus, please update your svn, those were problems in Apache-Test, now 
should be fixed.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Stas Bekman wrote:
> Stas Bekman wrote:
> 
>> found the guilty:
>>
>>> So it must be some change in the last day or so. Now that I can 
>>> reproduce it, I'll work on fixing it.
>>
>>
>>
>> Upgrading from Test::Harness 2.42 to 2.44 breaks it.
>>
>> I just happened to upgrade it last night, that's why I didn't see the 
>> breakage till this morning.
> 
> 
> Though my errors are different from yours. Mine are all:
> 
>   Insecure dependency in piped open
> 
> so it must be some other module on your side. What upgrades did you do 
> against plain 5.8.6?

with this patch I now get the same errors as you do:

Index: Apache-Test/lib/Apache/TestConfig.pm
===================================================================
--- Apache-Test/lib/Apache/TestConfig.pm        (revision 109815)
+++ Apache-Test/lib/Apache/TestConfig.pm        (working copy)
@@ -1037,11 +1037,14 @@
      # untaint some %ENV fields
      local @ENV{ qw(IFS CDPATH ENV BASH_ENV) };

-    # Temporarly untaint PATH
+    # Temporarily untaint PATH
      (local $ENV{PATH}) = ( $ENV{PATH} =~ /(.*)/ );
      # -T disallows relative directories in the PATH
      $ENV{PATH} = join ':', grep !/^\./, split /:/, $ENV{PATH};

+    # launder for -T
+    $cmd =~ /(.*)/; $cmd = $1;
+
      my $handle = Symbol::gensym();
      open $handle, "$cmd|" or die "$cmd failed: $!";

so it's some other module.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Stas Bekman wrote:
> found the guilty:
> 
>> So it must be some change in the last day or so. Now that I can 
>> reproduce it, I'll work on fixing it.
> 
> 
> Upgrading from Test::Harness 2.42 to 2.44 breaks it.
> 
> I just happened to upgrade it last night, that's why I didn't see the 
> breakage till this morning.

Though my errors are different from yours. Mine are all:

   Insecure dependency in piped open

so it must be some other module on your side. What upgrades did you do 
against plain 5.8.6?

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
found the guilty:

> So it must be some change in the last day or so. Now that I can 
> reproduce it, I'll work on fixing it.

Upgrading from Test::Harness 2.42 to 2.44 breaks it.

I just happened to upgrade it last night, that's why I didn't see the 
breakage till this morning.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus Wichitill wrote:
> Stas Bekman wrote:
> 
>>> t/apr-ext/finfo....Insecure dependency in require while running with 
>>> -T switch at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
>>>  at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
>>>   TestAPRlib::finfo::BEGIN() called at 
>>> /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
>>
>>
>> There is nothing on line 24 in that file. besides 'use APR::Const', 
>> but 2 lines earlier. Try to add:
> 
> 
> Line 24 is the last line of the multiline 'use APR::Const' on my systems.
> 
> use APR::Const -compile => qw(SUCCESS FINFO_NORM FILETYPE_REG
>                               FILEPROT_WREAD FILEPROT_WWRITE
>                               FILEPROT_WEXECUTE);

Yup.

>>> Insecure dependency in mkdir while running with -T switch at 
>>> /usr/local/perl/lib/File/Path.pm line 159.
>>>  at /usr/local/perl/lib/File/Path.pm line 159
>>>   File::Path::mkpath('/usr/src/modperl-2.0/t/htdocs/perlio-ext', 0, 
>>> 493) called at /usr/src/modperl-2.0/blib/lib/Apache/TestUtil.pm line 250
>>
>>
>> Strange, can you reproduce it outside the script?
>>
>> perl -T -MFile::Path -le 'File::Path::mkpath("/tmp/xxx", 0, 0755)'
> 
> 
> Nope.

Strange. I've updated my svn and now I can see these and one more issue:

t/apr-ext/util......Insecure dependency in piped open while running with 
-T switch at /home/stas/apache.org/mp2-svn/blib/lib/Apache/TestConfig.pm 
line 1046.
Compilation failed in require at t/apr-ext/util.t line 7.
BEGIN failed--compilation aborted at t/apr-ext/util.t line 7.
dubious
         Test returned status 2 (wstat 512, 0x200)
Failed Test        Stat Wstat Total Fail  Failed  List of Failed

So it must be some change in the last day or so. Now that I can reproduce 
it, I'll work on fixing it.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Markus Wichitill <ma...@gmx.de>.
Stas Bekman wrote:
>> t/apr-ext/finfo....Insecure dependency in require while running with 
>> -T switch at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
>>  at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
>>   TestAPRlib::finfo::BEGIN() called at 
>> /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
> 
> There is nothing on line 24 in that file. besides 'use APR::Const', but 
> 2 lines earlier. Try to add:

Line 24 is the last line of the multiline 'use APR::Const' on my systems.

use APR::Const -compile => qw(SUCCESS FINFO_NORM FILETYPE_REG
                               FILEPROT_WREAD FILEPROT_WWRITE
                               FILEPROT_WEXECUTE);

>> Insecure dependency in mkdir while running with -T switch at 
>> /usr/local/perl/lib/File/Path.pm line 159.
>>  at /usr/local/perl/lib/File/Path.pm line 159
>>   File::Path::mkpath('/usr/src/modperl-2.0/t/htdocs/perlio-ext', 0, 
>> 493) called at /usr/src/modperl-2.0/blib/lib/Apache/TestUtil.pm line 250
> 
> Strange, can you reproduce it outside the script?
> 
> perl -T -MFile::Path -le 'File::Path::mkpath("/tmp/xxx", 0, 0755)'

Nope.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus Wichitill wrote:
> Stas Bekman wrote:
> 
>> Bizarre, I had this problem with 5.6.1 and traced it to Cwd. Upgrading 
>> took the problem away.
>>
>> Please apply
>>
>> Index: t/apr-ext/finfo.t
>> ===================================================================
>> --- t/apr-ext/finfo.t   (revision 109799)
>> +++ t/apr-ext/finfo.t   (working copy)
>> @@ -1,5 +1,10 @@
>>  #!perl -T
>>
>> +BEGIN {
>> +    use Carp;
>> +    $SIG{__DIE__} = \&Carp::confess;
>> +}
>> +
>>  use strict;
>>  use warnings FATAL => 'all';
>>  use Apache::Test;
>>
>> and run the tests again to find the guilty module for finfo
> 
> 
> t/apr-ext/finfo....Insecure dependency in require while running with -T 
> switch at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
>  at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
>   TestAPRlib::finfo::BEGIN() called at 
> /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24

There is nothing on line 24 in that file. besides 'use APR::Const', but 2 
lines earlier. Try to add:

1;
__END__

and slide it from the top down in that file to see where the error kicks in.

>> I see that the second test reports the problem more detailed:
>>
>>   Insecure dependency in mkdir while running with -T switch at
>>     /usr/local/perl/lib/File/Path.pm line 159. dubious
>>
>> that sucks, but still apply the same thing (or simply put it in t/TEST 
>> once)
> 
> 
> Putting it in t/TEST doesn't work.

right, sorry, it doesn't affect the tests.

> Insecure dependency in mkdir while running with -T switch at 
> /usr/local/perl/lib/File/Path.pm line 159.
>  at /usr/local/perl/lib/File/Path.pm line 159
>   File::Path::mkpath('/usr/src/modperl-2.0/t/htdocs/perlio-ext', 0, 493) 
> called at /usr/src/modperl-2.0/blib/lib/Apache/TestUtil.pm line 250

Strange, can you reproduce it outside the script?

perl -T -MFile::Path -le 'File::Path::mkpath("/tmp/xxx", 0, 0755)'

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Markus Wichitill <ma...@gmx.de>.
Stas Bekman wrote:
> Bizarre, I had this problem with 5.6.1 and traced it to Cwd. Upgrading 
> took the problem away.
> 
> Please apply
> 
> Index: t/apr-ext/finfo.t
> ===================================================================
> --- t/apr-ext/finfo.t   (revision 109799)
> +++ t/apr-ext/finfo.t   (working copy)
> @@ -1,5 +1,10 @@
>  #!perl -T
> 
> +BEGIN {
> +    use Carp;
> +    $SIG{__DIE__} = \&Carp::confess;
> +}
> +
>  use strict;
>  use warnings FATAL => 'all';
>  use Apache::Test;
> 
> and run the tests again to find the guilty module for finfo

t/apr-ext/finfo....Insecure dependency in require while running with -T 
switch at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
  at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
   TestAPRlib::finfo::BEGIN() called at 
/usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
   eval {...} called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
   require TestAPRlib/finfo.pm called at t/apr-ext/finfo.t line 12
   main::BEGIN() called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm 
line 24
   eval {...} called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
BEGIN failed--compilation aborted at 
/usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24.
  at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
   require TestAPRlib/finfo.pm called at t/apr-ext/finfo.t line 12
   main::BEGIN() called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm 
line 24
   eval {...} called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 24
Compilation failed in require at t/apr-ext/finfo.t line 12.
  at t/apr-ext/finfo.t line 12
   main::BEGIN() called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm 
line 12
   eval {...} called at /usr/src/modperl-2.0/t/lib/TestAPRlib/finfo.pm line 12
BEGIN failed--compilation aborted at t/apr-ext/finfo.t line 12.
  at t/apr-ext/finfo.t line 12
dubious
   Test returned status 9 (wstat 2304, 0x900)
FAILED--1 test script could be run, alas--no output ever seen

> I see that the second test reports the problem more detailed:
> 
>   Insecure dependency in mkdir while running with -T switch at
>     /usr/local/perl/lib/File/Path.pm line 159. dubious
> 
> that sucks, but still apply the same thing (or simply put it in t/TEST 
> once)

Putting it in t/TEST doesn't work.

Insecure dependency in mkdir while running with -T switch at 
/usr/local/perl/lib/File/Path.pm line 159.
  at /usr/local/perl/lib/File/Path.pm line 159
   File::Path::mkpath('/usr/src/modperl-2.0/t/htdocs/perlio-ext', 0, 493) 
called at /usr/src/modperl-2.0/blib/lib/Apache/TestUtil.pm line 250
   Apache::TestUtil::makepath('/usr/src/modperl-2.0/t/htdocs/perlio-ext') 
called at /usr/src/modperl-2.0/blib/lib/Apache/TestUtil.pm line 233
   Apache::TestUtil::t_mkdir('/usr/src/modperl-2.0/t/htdocs/perlio-ext') 
called at t/apr-ext/perlio.t line 60
dubious
   Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 1-12


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Also it'd be great to move t/TEST to start with -Tw, but it looks like 
there is a whole bunch of wars to fight through.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus Wichitill wrote:
> Stas Bekman wrote:
> 
>> Markus Wichitill wrote:
>>
>>> t/apr-ext/finfo and t/apr-ext/perlio fail with taint issues on 
>>> today's SVN, when run alone or as part of the whole test suite:
>>>
>>> $ perl t/TEST -v t/apr-ext/finfo t/apr-ext/perlio
>>> [...]
>>> t/apr-ext/finfo.....Insecure dependency in require while running with -T 
>>
>>
>> I know. It's a buggy Cwd. You need at least 2.06. I'll commit a 
>> requirement for Cwd: '2.06' in Apache-Test. Please confirm that it 
>> fixes the problem (it did for me).
> 
> 
> I have 3.01, which comes with Perl 5.8.6 and is also the current version 
> in the PathTools distribution on CPAN.

Bizarre, I had this problem with 5.6.1 and traced it to Cwd. Upgrading 
took the problem away.

Please apply

Index: t/apr-ext/finfo.t
===================================================================
--- t/apr-ext/finfo.t   (revision 109799)
+++ t/apr-ext/finfo.t   (working copy)
@@ -1,5 +1,10 @@
  #!perl -T

+BEGIN {
+    use Carp;
+    $SIG{__DIE__} = \&Carp::confess;
+}
+
  use strict;
  use warnings FATAL => 'all';
  use Apache::Test;

and run the tests again to find the guilty module for finfo

I see that the second test reports the problem more detailed:

   Insecure dependency in mkdir while running with -T switch at
     /usr/local/perl/lib/File/Path.pm line 159. dubious

that sucks, but still apply the same thing (or simply put it in t/TEST once)

and let's see the whole trace.

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Markus Wichitill <ma...@gmx.de>.
Stas Bekman wrote:
> Markus Wichitill wrote:
>> t/apr-ext/finfo and t/apr-ext/perlio fail with taint issues on today's 
>> SVN, when run alone or as part of the whole test suite:
>>
>> $ perl t/TEST -v t/apr-ext/finfo t/apr-ext/perlio
>> [...]
>> t/apr-ext/finfo.....Insecure dependency in require while running with -T 
> 
> I know. It's a buggy Cwd. You need at least 2.06. I'll commit a 
> requirement for Cwd: '2.06' in Apache-Test. Please confirm that it fixes 
> the problem (it did for me).

I have 3.01, which comes with Perl 5.8.6 and is also the current version in 
the PathTools distribution on CPAN.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org


Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux

Posted by Stas Bekman <st...@stason.org>.
Markus Wichitill wrote:
> t/apr-ext/finfo and t/apr-ext/perlio fail with taint issues on today's 
> SVN, when run alone or as part of the whole test suite:
> 
> $ perl t/TEST -v t/apr-ext/finfo t/apr-ext/perlio
> [...]
> t/apr-ext/finfo.....Insecure dependency in require while running with -T 

I know. It's a buggy Cwd. You need at least 2.06. I'll commit a 
requirement for Cwd: '2.06' in Apache-Test. Please confirm that it fixes 
the problem (it did for me).

-- 
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:stas@stason.org http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org
For additional commands, e-mail: dev-help@perl.apache.org