You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-commits@perl.apache.org by ge...@apache.org on 2005/03/23 19:57:11 UTC

svn commit: r158819 - perl/Apache-Test/trunk/t/conf/extra.conf.in perl/Apache-Test/trunk/t/cookies.t

Author: geoff
Date: Wed Mar 23 10:57:09 2005
New Revision: 158819

URL: http://svn.apache.org/viewcvs?view=rev&rev=158819
Log:
allow t/cookies.t to work on 2.0 where mod_cgid is
the default cgi module

Modified:
    perl/Apache-Test/trunk/t/conf/extra.conf.in
    perl/Apache-Test/trunk/t/cookies.t

Modified: perl/Apache-Test/trunk/t/conf/extra.conf.in
URL: http://svn.apache.org/viewcvs/perl/Apache-Test/trunk/t/conf/extra.conf.in?view=diff&r1=158818&r2=158819
==============================================================================
--- perl/Apache-Test/trunk/t/conf/extra.conf.in (original)
+++ perl/Apache-Test/trunk/t/conf/extra.conf.in Wed Mar 23 10:57:09 2005
@@ -32,7 +32,7 @@
 </IfModule>
 
 
-<IfModule mod_cgi.c>
+<IfModule @CGI_MODULE@>
   ScriptAlias /cgi-bin/ "@ServerRoot@/cgi-bin/"
 
   <Directory "@ServerRoot@/cgi-bin/">

Modified: perl/Apache-Test/trunk/t/cookies.t
URL: http://svn.apache.org/viewcvs/perl/Apache-Test/trunk/t/cookies.t?view=diff&r1=158818&r2=158819
==============================================================================
--- perl/Apache-Test/trunk/t/cookies.t (original)
+++ perl/Apache-Test/trunk/t/cookies.t Wed Mar 23 10:57:09 2005
@@ -8,7 +8,7 @@
 use Apache::TestUtil;
 
 plan tests => 2, need [qw(CGI CGI::Cookie)],
-    need_module('mod_cgi.c'), need_lwp;
+                      need_cgi, need_lwp;
 
 Apache::TestRequest::user_agent( cookie_jar => {} );