summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2020-06-09 10:11:33 +0000
committerJoe Orton <jorton@apache.org>2020-06-09 10:11:33 +0000
commit99457bced289a6d5e989efde4f93e2d60ff61d41 (patch)
treef372c22d4c8d44451300829b52d404ed8117c39d /Makefile.in
parent83e7e820cf8bfa2abff54a6c6ec8666506265b4e (diff)
downloadhttpd-99457bced289a6d5e989efde4f93e2d60ff61d41.tar.gz
* Makefile.in: Add TEST_CONFIG variable to specify flags for
all ./t/TEST invocations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878657 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 40c025a94c..df59db6fde 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -36,7 +36,8 @@ EXTRACLEAN_TARGETS = configure include/ap_config_auto.h.in generated_lists \
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_SUITE_LOCATION)/Makefile.PL $(INSTALL_HE
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)