Package: libapache2-mod-perl2 Version: 2.0.5-2 Tags: patch The APACHE_TEST_EXTRA_ARGS setting in debian/rules was introduced in 2.0.3-5 to improve the test suite coverage:
* debian/rules: Improve the test suite coverage by setting APACHE_TEST_EXTRA_ARGS="-httpd_conf /etc/apache2/apache2.conf" so that Apache::Test parses the right apache2 configuration file. but got accidentally disabled later with 2.0.5-1 due to a missing line continuation. Patch attached. This may be worth an upload by itself to verify that the test suite is still passing on all architectures. The change activates tests related to a few extra Apache modules (mod_alias, possibly mod_rewrite IIRC) whose presence isn't detected otherwise. I'd be glad if somebody else could pick this up, I'm short on hack time as usual. I've only tested this myself on i386 with Perl 5.14.2 and a couple of 5.14 related patches (see #636651.) -- Niko Tyni [email protected]
>From d19c2f4b595aef8bc31cb507907c4198bc707c5c Mon Sep 17 00:00:00 2001 From: Niko Tyni <[email protected]> Date: Fri, 21 Oct 2011 19:26:50 +0300 Subject: [PATCH] Improve the test suite coverage (again) with a typo fix The APACHE_TEST_EXTRA_ARGS setting in debian/rules was introduced in 2.0.3-5 to improve the test suite coverage, but got accidentally disabled later with 2.0.5-1 due to a missing line continuation. --- debian/rules | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/debian/rules b/debian/rules index 352fc23..813f3df 100755 --- a/debian/rules +++ b/debian/rules @@ -28,7 +28,7 @@ override_dh_auto_build: override_dh_auto_test: - APACHE_TEST_EXTRA_ARGS="-httpd_conf /etc/apache2/apache2.conf" + APACHE_TEST_EXTRA_ARGS="-httpd_conf /etc/apache2/apache2.conf" \ LANG=C \ dh_auto_test -- 1.7.7

