gozer 2004/07/28 14:58:53
Modified: perl-framework/Apache-Test Changes
perl-framework/Apache-Test/lib/Apache TestMM.pm
Log:
Add APACHE_TEST_EXTRA_ARGS make variable to all invocations to t/TEST
to allow passing extra arguments from the command line.
Reviewed by: geoff
Revision Changes Path
1.150 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- Changes 15 Jul 2004 20:33:57 -0000 1.149
+++ Changes 28 Jul 2004 21:58:53 -0000 1.150
@@ -8,6 +8,9 @@
=item 1.13-dev
+Add APACHE_TEST_EXTRA_ARGS make variable to all invocations to t/TEST
+to allow passing extra arguments from the command line. [Gozer]
+
When APACHE_TEST_NO_STICKY_PREFERENCES=1 is used don't even try to
interactively configure the server, as we don't save any config it was
entering an infinite loop. [Stas]
1.35 +2 -2
httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm
Index: TestMM.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- TestMM.pm 16 Apr 2004 19:47:42 -0000 1.34
+++ TestMM.pm 28 Jul 2004 21:58:53 -0000 1.35
@@ -63,12 +63,12 @@
test_clean :
$(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
- t/TEST -clean
+ t/TEST $(APACHE_TEST_EXTRA_ARGS) -clean
run_tests : test_clean
$(PASSENV) \
$(FULLPERL) -I$(INST_ARCHLIB) -I$(INST_LIB) \
- t/TEST -bugreport -verbose=$(TEST_VERBOSE) $(TEST_FILES)
+ t/TEST $(APACHE_TEST_EXTRA_ARGS) -bugreport -verbose=$(TEST_VERBOSE)
$(TEST_FILES)
test :: pure_all run_tests test_clean