You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/06/09 10:11:33 UTC

svn commit: r1878657 - /httpd/httpd/trunk/Makefile.in

Author: jorton
Date: Tue Jun  9 10:11:33 2020
New Revision: 1878657

URL: http://svn.apache.org/viewvc?rev=1878657&view=rev
Log:
* Makefile.in: Add TEST_CONFIG variable to specify flags for
  all ./t/TEST invocations.

Modified:
    httpd/httpd/trunk/Makefile.in

Modified: httpd/httpd/trunk/Makefile.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/Makefile.in?rev=1878657&r1=1878656&r2=1878657&view=diff
==============================================================================
--- httpd/httpd/trunk/Makefile.in (original)
+++ httpd/httpd/trunk/Makefile.in Tue Jun  9 10:11:33 2020
@@ -36,7 +36,8 @@ EXTRACLEAN_TARGETS = configure include/a
 	httpd.spec
 PHONY_TARGETS := check check-conf check-dirs check-include unittest-objdir
 
-TESTS = 
+TESTS =
+TEST_CONFIG =
 
 include $(top_builddir)/build/rules.mk
 include $(top_srcdir)/build/program.mk
@@ -443,7 +444,7 @@ $(TEST_SUITE_LOCATION)/Makefile: $(TEST_
 	cd "$(TEST_SUITE_LOCATION)" && \
 	    perl Makefile.PL -apxs "$(top_builddir)/check/bin/apxs" && \
 	    ./t/TEST -clean && \
-	    ./t/TEST -config
+	    ./t/TEST -config $(TEST_CONFIG)
 
 check-make: $(TEST_SUITE_LOCATION)/Makefile
 
@@ -453,7 +454,7 @@ check-no:
 
 check-yes: check-include check-dirs check-conf check/build/config_vars.mk \
 	check-binaries $(TEST_SUITE_LOCATION)/Makefile
-	cd $(TEST_SUITE_LOCATION) && $(MAKE) && ./t/TEST $(TESTS)
+	cd $(TEST_SUITE_LOCATION) && $(MAKE) && ./t/TEST $(TEST_CONFIG) $(TESTS)
 
 # Run the Apache::Test suite if it has been configured with --with-test-suite.
 check: check-$(WITH_TEST_SUITE)