From 3b9eab9779262f496e22b205db5a7e1a257706e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johan=20Bergstr=C3=B6m?= Date: Fri, 20 Mar 2015 09:15:54 +1100 Subject: [PATCH] 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 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index aeba193..b51523b 100644 --- a/Makefile +++ b/Makefile @@ -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 -- 2.7.4