Looks good.
/Erik
On 2015-08-12 23:23, David DeHaven wrote:
JBS Issue:
https://bugs.openjdk.java.net/browse/JDK-8130929
I need a small change to top level test/Makefile. If closed/test/Makefile is not present
it is simply ignored so this should have no impact on OpenJDK builds. This change will
allow (any) closed source components to be supported with "make test". I plan
on pushing this to jdk9/client to aid with test fixes.
diff --git a/test/Makefile b/test/Makefile
--- a/test/Makefile
+++ b/test/Makefile
@@ -57,6 +57,9 @@
# All testing
all: jdk_all langtools_all jaxp_all
+# Bring in closed test targets if present
+-include $(TOPDIR)/closed/test/Makefile
+
# Test targets
langtools_% :
@$(NO_STOPPING)$(call SUBDIR_TEST, $(LANGTOOLS_DIR), JT_JAVA=$(PRODUCT_HOME)
JTREG_HOME=$(JT_HOME) TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@))
-DrD-