stas 2003/12/01 18:19:46
Modified: perl-framework/Apache-Test SUPPORT Log: update to include information on what to do if 'make test' can't find the server Revision Changes Path 1.3 +25 -0 httpd-test/perl-framework/Apache-Test/SUPPORT Index: SUPPORT =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/SUPPORT,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- SUPPORT 20 Oct 2003 21:45:19 -0000 1.2 +++ SUPPORT 2 Dec 2003 02:19:46 -0000 1.3 @@ -9,3 +9,28 @@ moderated, so unless you are subscribed to it, your message will have to be approved first by a moderator. Therefore please allow some time (up to a few days) for your post to propagate to the list. + +If 'make test' fails to start, with an error message: + + !!! no test server configured, please specify an httpd or apxs or put + either in your PATH. For example: t/TEST -httpd /path/to/bin/httpd + +or similar, please don't submit a bug report, since this is a user +error, not a bug in Apache-Test. Instead, do what the error message +suggests; Apache-Test needs to know where it can find Apache and other +components. If you have apxs installed you can run the test suite via: + + % t/TEST -apxs /path/to/bin/apxs + +or if you set the APXS environment variable, via make: + + % APXS=/path/to/bin/apxs make test + +If you don't have 'apxs', tell Apache-Test where your httpd can be +found: + + % t/TEST -httpd /path/to/bin/httpd + +or via the APACHE environment variable: + + % APACHE=/path/to/bin/httpd make test
