Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 7888 invoked from network); 26 Mar 2004 01:17:10 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 26 Mar 2004 01:17:10 -0000 Received: (qmail 3220 invoked by uid 500); 26 Mar 2004 01:16:54 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 3151 invoked by uid 500); 26 Mar 2004 01:16:54 -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 3138 invoked from network); 26 Mar 2004 01:16:53 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 26 Mar 2004 01:16:53 -0000 Received: (qmail 7843 invoked by uid 1072); 26 Mar 2004 01:17:08 -0000 Date: 26 Mar 2004 01:17:08 -0000 Message-ID: <20040326011708.7841.qmail@minotaur.apache.org> From: stas@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/Apache-Test Changes 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 stas 2004/03/25 17:17:08 Modified: perl-framework/Apache-Test/lib/Apache TestMM.pm perl-framework/Apache-Test Changes Log: explain where to get the list of config options suitable for passing to Makefile.PL, and their usage Submitted by: David Wheeler Revision Changes Path 1.32 +21 -6 httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm Index: TestMM.pm =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -u -u -r1.31 -r1.32 --- TestMM.pm 4 Mar 2004 05:51:31 -0000 1.31 +++ TestMM.pm 26 Mar 2004 01:17:08 -0000 1.32 @@ -164,12 +164,13 @@ Apache::TestMM::filter_args(); WriteMakefile(...); -When C is called it parses C<@ARGV>, hoping to find special -options like C. C accepts a lot of -options of its own. When C is called, it -removes any C-specific options from C<@ARGV> and stores them -internally, so when C is called they aren't in C<@ARGV> and -thus won't be processed by C. +When C is called it parses C<@ARGV>, hoping to find +special options like C. C +accepts a lot of configuration options of its own. When +C is called, it removes any +C-specific options from C<@ARGV> and stores them +internally, so when C is called they aren't in +C<@ARGV> and thus won't be processed by C. The options can be set when F is called: @@ -190,6 +191,20 @@ %Apache::TestConfig::Argv = qw(apxs /path/to/apxs); which is going to be used by the C runtime. + +The other frequently used options are: C<-httpd>, telling where to +find the httpd (usually when the C<-apxs> option is not used), +C<-libmodperl> to use a specific mod_perl shared object (if your +mod_perl is built as DSO), C<-maxclients> to change the default number +of the configured C directive, C<-port> to start the +server on a specific port, etc. To get the complete list of available +configuration options and their purpose and syntax, run: + + % perl -MApache::TestConfig -le 'Apache::TestConfig::usage()' + +You may wish to document some of these in your application's F +file, especially the C<-apxs> and C<-httpd> options. + =head2 C 1.114 +2 -0 httpd-test/perl-framework/Apache-Test/Changes Index: Changes =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v retrieving revision 1.113 retrieving revision 1.114 diff -u -u -r1.113 -r1.114 --- Changes 25 Mar 2004 01:31:29 -0000 1.113 +++ Changes 26 Mar 2004 01:17:08 -0000 1.114 @@ -8,6 +8,8 @@ =item 1.10-dev +improved docs [David Wheeler ] + Add a virtual method Apache::TestRun::pre_configure, and fix the documentation to say that subclasses must not forget to run the superclass' method. [Stas]