From 6d255eaf297fc2b8ae410fb7d77db727bd1911fd Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 31 May 2017 10:14:34 -0700 Subject: [PATCH] build: streamline JS test suites in Makefile * alphabetize the JS test suites * Use CI_JS_SUITES variable instead of listing all tests --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5c9beb48c94bac..577c5e292d4216 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