8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg jdk-10+24
authorerikj
Mon, 18 Sep 2017 18:15:05 -0700
changeset 47221 3b201865d5c1
parent 47220 7dfdd17dbd97
child 47222 c8ac05bbe477
8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg Reviewed-by: darcy
test/Makefile
--- a/test/Makefile	Mon Sep 18 13:33:29 2017 -0700
+++ b/test/Makefile	Mon Sep 18 18:15:05 2017 -0700
@@ -59,18 +59,22 @@
 endif
 # Test targets
 langtools_% :
-	@$(NO_STOPPING)$(call SUBDIR_TEST, langtools, CONCURRENCY=$(JDK_TEST_JOBS) \
+	@$(NO_STOPPING)$(call SUBDIR_TEST, langtools, \
+	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) \
 	    JT_JAVA=$(PRODUCT_HOME) JTREG_HOME=$(JT_HOME) \
 	    TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@))
 
 jdk_% core_%s svc_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, jdk, CONCURRENCY=$(JDK_TEST_JOBS) TEST="$@" $@)
+	@$(NO_STOPPING)$(call SUBDIR_TEST, jdk, \
+	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
 
 jaxp_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, jaxp, CONCURRENCY=$(JDK_TEST_JOBS) TEST="$@" $@)
+	@$(NO_STOPPING)$(call SUBDIR_TEST, jaxp, \
+	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
 
 nashorn_%:
-	@$(NO_STOPPING)$(call SUBDIR_TEST, nashorn, CONCURRENCY=$(JDK_TEST_JOBS) TEST="$@" $@)
+	@$(NO_STOPPING)$(call SUBDIR_TEST, nashorn, \
+	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
 
 SUB_MAKE_ARGS :=
 ifneq ($(TEST_JOBS), 0)