diff options
author | Kjell Winblad <kjellwinblad@gmail.com> | 2019-06-11 17:36:04 +0200 |
---|---|---|
committer | Kjell Winblad <kjellwinblad@gmail.com> | 2019-06-26 08:24:57 +0200 |
commit | 2f246b551cca5ca7ca9187282e42650976a65cbb (patch) | |
tree | 80a9f405bb260469d1f1332fe955e2db101c8f3b /Makefile.in | |
parent | b286b7f1de4aed13ba71b817321673eb67df941e (diff) | |
download | erlang-2f246b551cca5ca7ca9187282e42650976a65cbb.tar.gz |
Add "make test" command for root and application directories
The added make target is described in HOWTO/TESTING.md.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 25003f47a9..3c4a6da85e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1141,3 +1141,8 @@ bootstrap_clean: || $(MAKE) BOOTSTRAP_ROOT=$(BOOTSTRAP_ROOT) bootstrap_root_clean # ---------------------------------------------------------------------- + +.PHONY: test + +test: all release release_tests + $(ERL_TOP)/make/test_target_script.sh $(ERL_TOP) |