From: Jeff King Date: Sun, 9 Jun 2013 08:09:32 +0000 (-0400) Subject: t/lib-httpd/apache.conf: configure an MPM module for apache 2.4 X-Git-Tag: v1.8.3.4~27^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/296f0b3ea9b904982780522215a9c71d4a7bd02c t/lib-httpd/apache.conf: configure an MPM module for apache 2.4 Versions of Apache before 2.4 always had a "MultiProcessing Module" (MPM) statically built in, which manages the worker threads/processes. We do not care which one, as it is largely a performance issue, and we put only a light load on the server during our testing. As of Apache 2.4, the MPM module is loadable just like any other module, but exactly one such module must be loaded. On a system where the MPMs are compiled dynamically (e.g., Debian unstable), this means that our test Apache server will not start unless we provide the appropriate configuration. Unfortunately, we do not actually know which MPM modules are available or appropriate for the system on which the tests are running. This patch picks the "prefork" module, as it is likely to be available on all Unix-like systems. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/t/lib-httpd/apache.conf b/t/lib-httpd/apache.conf index eb44322b1b..67b6db136e 100644 --- a/t/lib-httpd/apache.conf +++ b/t/lib-httpd/apache.conf @@ -57,6 +57,9 @@ ErrorLog error.log LoadModule access_compat_module modules/mod_access_compat.so + + LoadModule mpm_prefork_module modules/mod_mpm_prefork.so + PassEnv GIT_VALGRIND