Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 27493 invoked from network); 2 Oct 2003 08:30:00 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 2 Oct 2003 08:30:00 -0000 Received: (qmail 78100 invoked by uid 500); 2 Oct 2003 08:29:28 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 78079 invoked by uid 500); 2 Oct 2003 08:29:28 -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 78022 invoked from network); 2 Oct 2003 08:29:28 -0000 Received: from unknown (HELO mail.logilune.com) (195.154.174.52) by daedalus.apache.org with SMTP; 2 Oct 2003 08:29:28 -0000 Received: from stason.org (localhost.logilune.com [127.0.0.1]) by mail.logilune.com (Postfix) with ESMTP id 2A2B679B74; Thu, 2 Oct 2003 10:29:37 +0200 (CEST) Message-ID: <3F7BE1EF.4030404@stason.org> Date: Thu, 02 Oct 2003 01:29:35 -0700 From: Stas Bekman Organization: Hope, Humanized User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030630 X-Accept-Language: en-us, en, he, ru MIME-Version: 1.0 To: Randy Kobes Cc: mod_perl Dev Subject: Re: t/SMOKE on win32 References: <200309301950.h8UJoV125267@ironsides.slaysys.com> <3F79F1B4.2070804@stason.org> <3F7B1873.5060508@stason.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Randy Kobes wrote: One more issue with IPC/Run3. Since it's not in the core, we have to optionally require it and die in run_test if it's not available. However leaving it as 'require IPC::Run3' results in: Can't locate IPC/Run3.pm in @INC (@INC contains: lib Apache-Test/lib /home/stas/perl/5.8.0-ithread/lib/5.8.0/i686-linux-thread-multi /home/stas/perl/5.8.0-ithread/lib/5.8.0 /home/stas/perl/5.8.0-ithread/lib/site_perl/5.8.0/i686-linux-thread-multi /home/stas/perl/5.8.0-ithread/lib/site_perl/5.8.0 /home/stas/perl/5.8.0-ithread/lib/site_perl .) at Apache-Test/lib/Apache/TestSmoke.pm line 18. during the build time, which is bad. something like: use constant HAS_IPC_RUN3 => eval { require IPC::Run3 }; ... sub run_test { die "IPC::Run3 is required to run this program" unless HAS_IPC_RUN3; IPC::Run3->import('run3'); ... } ... __________________________________________________________________ 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