On Thu, 29 Jan 2004, Jost Krieger wrote: > Below is the error stack during 'make test': > > /usr/local/perl-5.8.1/bin/perl -Iblib/arch -Iblib/lib \ > t/TEST -clean > APACHE_PORT= APACHE_USER= APACHE= APXS= APACHE_GROUP= \ > /usr/local/perl-5.8.1/bin/perl -Iblib/arch -Iblib/lib \ > t/TEST -bugreport -verbose=0 > !!! 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 > make: *** [run_tests] Error 1
Did you remember to configure the build with perl Makefile.PL -apxs /path/to/apxs as described in the README file? e.g.: perl Makefile.PL -apxs /usr/sbin/apxs This is necessary so that Apache::Test can configure the server and figure out how to run apache. If you dont do this, Apache::Test will not initialize properly and you make test will fail. Regards, Michael Schout GKG.NET, Inc.
