Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 8974 invoked from network); 13 Jun 2004 16:16:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 13 Jun 2004 16:16:59 -0000 Received: (qmail 23669 invoked by uid 500); 13 Jun 2004 16:16:59 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 23644 invoked by uid 500); 13 Jun 2004 16:16:59 -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 23624 invoked by uid 99); 13 Jun 2004 16:16:58 -0000 Received: from [80.91.224.249] (HELO main.gmane.org) (80.91.224.249) by apache.org (qpsmtpd/0.27.1) with ESMTP; Sun, 13 Jun 2004 09:16:58 -0700 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BZXeH-0000IR-00 for ; Sun, 13 Jun 2004 18:15:57 +0200 Received: from adsl-34-76-42.mia.bellsouth.net ([67.34.76.42]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 13 Jun 2004 18:15:57 +0200 Received: from joe+gmane by adsl-34-76-42.mia.bellsouth.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 13 Jun 2004 18:15:57 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: dev@perl.apache.org To: dev@perl.apache.org From: Joe Schaefer Subject: Re: minor type changes for debian amd64 Date: 13 Jun 2004 12:15:54 -0400 Lines: 27 Message-ID: <87acz7303p.fsf@gemini.sunstarsys.com> References: <87isdw5tey.fsf@gemini.sunstarsys.com> <40CBE8C2.4000507@stason.org> <87llir347u.fsf@gemini.sunstarsys.com> <87fz8z32wt.fsf@gemini.sunstarsys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: adsl-34-76-42.mia.bellsouth.net Mail-Copies-To: never User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Sender: news X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Joe Schaefer writes: [...] > Correction: t/filter/in_init_basic.t is now failing with both > worker and prefork. Investigating... The patch is fine; test itself is borked (too many qr's). Here's the patch, the args also need to be reordered because Test.pm v1.24 deprecates using regexps in the first argument. Index: t/filter/in_init_basic.t =================================================================== RCS file: /home/cvspublic/modperl-2.0/t/filter/in_init_basic.t,v retrieving revision 1.4 diff -u -r1.4 in_init_basic.t --- t/filter/in_init_basic.t 6 Aug 2003 07:06:23 -0000 1.4 +++ t/filter/in_init_basic.t 13 Jun 2004 16:12:14 -0000 @@ -13,4 +13,4 @@ my $location = '/TestFilter__in_init_basic'; my $response = POST_BODY $location, content => $content; -ok t_cmp(qr/$expected/, qr/$response/, "test filter init functionality"); +ok t_cmp($response, qr/$expected/, "test filter init functionality"); -- Joe Schaefer --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org For additional commands, e-mail: dev-help@perl.apache.org