diff options
author | Joe Orton <jorton@apache.org> | 2018-06-06 13:25:32 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2018-06-06 13:25:32 +0200 |
commit | af3353bea3b84341a6e3940810aa1f407b6fb66b (patch) | |
tree | 37ed189cd143bfb01db29fd666df029307891c3b /Makefile.in | |
parent | mod_ssl: after code review, changed: (diff) | |
download | apache2-af3353bea3b84341a6e3940810aa1f407b6fb66b.tar.xz apache2-af3353bea3b84341a6e3940810aa1f407b6fb66b.zip |
* Makefile.in: Pass TESTS=... to run only specific tests with make check.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1833013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index b4d1e7524a..43d1879a9f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -31,6 +31,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 = + include $(top_builddir)/build/rules.mk include $(top_srcdir)/build/program.mk @@ -438,7 +440,7 @@ check: check-include check-dirs check-conf check/build/config_vars.mk check-bina perl Makefile.PL -apxs "$(top_builddir)/check/bin/apxs" && \ ./t/TEST -clean && \ ./t/TEST -config && \ - ./t/TEST + ./t/TEST $(TESTS) # # Unit Test Suite |