Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 2178 invoked from network); 13 Jan 2006 12:06:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Jan 2006 12:06:16 -0000 Received: (qmail 94472 invoked by uid 500); 13 Jan 2006 12:06:10 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 94417 invoked by uid 500); 13 Jan 2006 12:06:10 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 94402 invoked by uid 99); 13 Jan 2006 12:06:10 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jan 2006 04:06:10 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [82.119.242.94] (HELO mail.suse.cz) (82.119.242.94) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jan 2006 04:06:09 -0800 Received: from king.suse.cz (king.suse.cz [10.20.1.103]) (using TLSv1 with cipher EXP1024-RC4-SHA (56/128 bits)) (No client certificate requested) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 2190B6284EA for ; Fri, 13 Jan 2006 13:05:41 +0100 (CET) From: Martin Mrazik To: dev@httpd.apache.org Subject: [PATCH] httpd-test/perl-framework/t/modules/info.t Date: Fri, 13 Jan 2006 13:06:21 +0100 User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_9e5xDqlocXDxuGb" Message-Id: <200601131306.21863.mmrazik@suse.cz> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --Boundary-00=_9e5xDqlocXDxuGb Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, it seems mod_imap was renamed to mod_imagemap and thus the modules/info.t test from Perl-framework should be fixed as well. I have attached the patch for httpd-test/perl-framework/t/modules/info.t. Best Regards, -- Martin Mrazik, QA Developer mmrazik@suse.cz --Boundary-00=_9e5xDqlocXDxuGb Content-Type: text/x-diff; charset="us-ascii"; name="qa_apache_testsuite-0.2-mod_imap-rename.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="qa_apache_testsuite-0.2-mod_imap-rename.diff" diff -Naur qa_apache_testsuite-0.2.old/t/modules/info.t qa_apache_testsuite-0.2/t/modules/info.t --- qa_apache_testsuite-0.2.old/t/modules/info.t 2004-11-25 01:36:41.000000000 +0100 +++ qa_apache_testsuite-0.2/t/modules/info.t 2006-01-11 13:33:12.000000000 +0100 @@ -21,7 +21,9 @@ if ($_ =~ //) { if ($1 eq 'util_ldap.c') { push(@actual,'mod_ldap.c'); - } else { + } elsif ($1 eq 'mod_imap.c') { + push(@actual, 'mod_imagemap.c'); + } else { push(@actual, $1); } } --Boundary-00=_9e5xDqlocXDxuGb--