summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-05-31 10:14:34 -0700
committerRich Trott <rtrott@gmail.com>2017-06-02 11:27:45 -0700
commit7b56fd8cf07202e022c6411f8a57bddfa2588f61 (patch)
treef6fe6d891bfca8e8c6b36bd1d7a99d857fddf06a /Makefile
parent160989914261785c7e270e0716c647f6e85b4771 (diff)
downloadnode-new-7b56fd8cf07202e022c6411f8a57bddfa2588f61.tar.gz
build: streamline JS test suites in Makefile
* alphabetize the JS test suites * Use CI_JS_SUITES variable instead of listing all tests PR-URL: https://github.com/nodejs/node/pull/13340 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5c9beb48c9..577c5e292d 100644
--- a/Makefile
+++ b/Makefile
@@ -197,8 +197,8 @@ test: all
$(MAKE) build-addons-napi
$(MAKE) cctest
$(PYTHON) tools/test.py --mode=release -J \
- doctool inspector known_issues message pseudo-tty parallel sequential \
- async-hooks $(CI_NATIVE_SUITES)
+ $(CI_JS_SUITES) \
+ $(CI_NATIVE_SUITES)
$(MAKE) lint
test-parallel: all
@@ -328,7 +328,7 @@ test-all-valgrind: test-build
$(PYTHON) tools/test.py --mode=debug,release --valgrind
CI_NATIVE_SUITES := addons addons-napi
-CI_JS_SUITES := doctool inspector known_issues message parallel pseudo-tty sequential async-hooks
+CI_JS_SUITES := async-hooks doctool inspector known_issues message parallel pseudo-tty sequential
# Build and test addons without building anything else
test-ci-native: LOGLEVEL := info