Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 5816 invoked from network); 4 Dec 2004 17:37:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Dec 2004 17:37:50 -0000 Received: (qmail 70436 invoked by uid 500); 4 Dec 2004 17:37:49 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 70421 invoked by uid 500); 4 Dec 2004 17:37:49 -0000 Mailing-List: contact dev-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@perl.apache.org Received: (qmail 70400 invoked by uid 99); 4 Dec 2004 17:37:49 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from mail.logilune.com (HELO mail.logilune.com) (195.80.154.36) by apache.org (qpsmtpd/0.28) with ESMTP; Sat, 04 Dec 2004 09:37:47 -0800 Received: from [127.0.0.1] (localhost.logilune.com [127.0.0.1]) by mail.logilune.com (Postfix) with ESMTP id F2A751E1CEE; Sat, 4 Dec 2004 18:37:44 +0100 (CET) Message-ID: <41B1F5E7.9060105@stason.org> Date: Sat, 04 Dec 2004 12:37:43 -0500 From: Stas Bekman Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.3) Gecko/20040913 X-Accept-Language: en-us, en, he, ru MIME-Version: 1.0 To: Stas Bekman Cc: Markus Wichitill , modperl-dev Subject: Re: [mp2] t/apr-ext/finfo and t/apr-ext/perlio failures on Linux References: <41B1B4CE.4090308@gmx.de> <41B1D2E9.4000501@stason.org> <41B1D770.3030500@gmx.de> <41B1DBBC.4020408@stason.org> <41B1E08E.50202@gmx.de> <41B1E2C7.9040108@stason.org> <41B1E511.3010602@gmx.de> <41B1E855.8060406@stason.org> <41B1F19F.2090608@stason.org> <41B1F3BD.30801@stason.org> In-Reply-To: <41B1F3BD.30801@stason.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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