diff options
author | Johan Bergström <bugs@bergstroem.nu> | 2015-03-20 09:15:54 +1100 |
---|---|---|
committer | Johan Bergström <bugs@bergstroem.nu> | 2015-03-20 10:43:09 +1100 |
commit | 3b9eab9779262f496e22b205db5a7e1a257706e4 (patch) | |
tree | a92a13fd318f7325d7088c299a4f93d312c77c37 | |
parent | 4c731042d4b9d3387c9269b10aa19e5ef88d98b3 (diff) | |
download | node-new-3b9eab9779262f496e22b205db5a7e1a257706e4.tar.gz |
build: make check aliases test
A common convention in auto* is to call make check rather than
make test. Let one alias the other
PR-URL: https://github.com/iojs/io.js/pull/1211
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,8 @@ distclean: -rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp -rm -f $(BINARYTAR).* $(TARBALL).* +check: test + test: all $(PYTHON) tools/test.py --mode=release message parallel sequential -J $(MAKE) jslint |