Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 70875 invoked from network); 18 May 2004 09:48:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 May 2004 09:48:38 -0000 Received: (qmail 98632 invoked by uid 500); 18 May 2004 09:49:02 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 98505 invoked by uid 500); 18 May 2004 09:49:00 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 98315 invoked by uid 98); 18 May 2004 09:48:58 -0000 Received: from jorton@apache.org by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(209.237.227.194):. Processed in 0.795959 secs); 18 May 2004 09:48:58 -0000 X-Qmail-Scanner-Mail-From: jorton@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 0.795959 secs) Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by hermes.apache.org with SMTP; 18 May 2004 09:48:56 -0000 Received: (qmail 70661 invoked by uid 1582); 18 May 2004 09:48:13 -0000 Date: 18 May 2004 09:48:13 -0000 Message-ID: <20040518094813.70660.qmail@minotaur.apache.org> From: jorton@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/t/modules autoindex2.t X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jorton 2004/05/18 02:48:13 Modified: perl-framework/t/modules autoindex2.t Log: Adjust for 1.3 autoindex behaviour. Revision Changes Path 1.4 +3 -2 httpd-test/perl-framework/t/modules/autoindex2.t Index: autoindex2.t =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/t/modules/autoindex2.t,v retrieving revision 1.3 retrieving revision 1.4 diff -d -u -r1.3 -r1.4 --- autoindex2.t 5 Feb 2002 15:03:20 -0000 1.3 +++ autoindex2.t 18 May 2004 09:48:13 -0000 1.4 @@ -18,14 +18,15 @@ my $documentroot = $vars->{documentroot}; my $base_dir = catdir $documentroot, "modules", "autoindex2"; my $base_uri = "/modules/autoindex2"; +my $have_apache_2 = have_apache 2; # which sub-dir listings should be seen in mod_autoindex's output # 1 == should appear # 0 == should not appear my %dirs = ( dir_normal => 1, # obvious - dir_protected => 0, # - dir_broken => 0, # + dir_protected => $have_apache_2?0:1, # + dir_broken => $have_apache_2?0:1, # ); plan tests => 3, ['autoindex'];