diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-10-04 11:11:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 11:11:05 +0200 |
commit | 172b7f266cef81e0e05827cae09f1ee11703be95 (patch) | |
tree | 9afb69c9506c6c4d30d2df10e83663fe1ba249f8 | |
parent | 6fadb5df05845e4d7ed18c17c5e68008a97d9044 (diff) | |
parent | 1e6faa7d06389b20946038dcdc85f7a1211c628d (diff) |
Merge pull request #5321 from trofi/document-check-targets
mk/tests.mk: document 'check' and 'installcheck' in 'make help'
-rw-r--r-- | mk/tests.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 21bdc5748..a2e30a378 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -13,3 +13,7 @@ define run-install-test endef .PHONY: check installcheck + +print-top-help += \ + echo " check: Run unit tests"; \ + echo " installcheck: Run functional tests"; |