Author: pgollucci
Date: Sat Jul 15 22:56:02 2006
New Revision: 422381
URL: http://svn.apache.org/viewvc?rev=422381&view=rev
Log:
well this seems to work.
Sadlly, the existing mod_perl 1.x framework seems to orphan
the httpd process after make test BEFORE Apache-Test gets
a chance to startup for Apache-SizeLimit.
Any ideas welcome....
Modified:
perl/modperl/branches/1.x/Makefile.PL
Modified: perl/modperl/branches/1.x/Makefile.PL
URL:
http://svn.apache.org/viewvc/perl/modperl/branches/1.x/Makefile.PL?rev=422381&r1=422380&r2=422381&view=diff
==============================================================================
--- perl/modperl/branches/1.x/Makefile.PL (original)
+++ perl/modperl/branches/1.x/Makefile.PL Sat Jul 15 22:56:02 2006
@@ -1531,7 +1531,7 @@
q(
-test: pure_all start_httpd run_tests kill_httpd
+test: pure_all start_httpd run_tests kill_httpd run_apache_sizelimit_tests
);
my $have_so = $USE_DSO || ($APACI_ARGS =~ /--enable-shared=/);
@@ -1570,6 +1570,8 @@
run_tests:
$(FULLPERL) $(MP_TEST_SCRIPT) $(TEST_VERBOSE)
+
+run_apache_sizelimit_tests:
@(echo ; echo ; echo)
cd Apache-SizeLimit ; $(MAKE) test
),