aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorohair <none@none>2011-03-22 11:07:40 -0700
committerohair <none@none>2011-03-22 11:07:40 -0700
commite1c42f31f4a1e7cc2e9f70cae4d392726a5d0dbe (patch)
tree5cc6a72c25b557d5ebd362a1a44076a09019b2ec /test
parent205a6cbb12b616a9b9ca1dea81ff79000994ef52 (diff)
downloadjdk8u-e1c42f31f4a1e7cc2e9f70cae4d392726a5d0dbe.tar.gz
6737397: Should support running JCK test suite with test/Makefile and JPRT
Reviewed-by: alanb
Diffstat (limited to 'test')
-rw-r--r--test/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 26d00bb..95c6946 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -73,13 +73,16 @@ JDK_TEST_LIST2 = \
jdk_rmi \
jdk_swing
+# These are the current jck test targets in the jdk repository
+JDK_JCK7_LIST = jck7devtools jck7compiler jck7runtime
+
# Default test target (everything)
all: $(JDK_TEST_LIST) $(LANGTOOLS_TEST_LIST)
# Test targets
$(LANGTOOLS_TEST_LIST):
@$(NO_STOPPING)$(call SUBDIR_TEST, $(LANGTOOLS_DIR), $(subst langtools_,,$@))
-$(JDK_TEST_LIST) $(JDK_TEST_LIST2):
+$(JDK_TEST_LIST) $(JDK_TEST_LIST2) $(JDK_JCK7_LIST):
@$(NO_STOPPING)$(call SUBDIR_TEST, $(JDK_DIR), $@)
clean:
@@ -87,7 +90,9 @@ clean:
################################################################
# Phony targets (e.g. these are not filenames)
-.PHONY: all clean $(JDK_TEST_LIST) $(LANGTOOLS_TEST_LIST)
+.PHONY: all clean \
+ $(JDK_TEST_LIST) $(JDK_TEST_LIST2) $(JDK_JCK7_LIST) \
+ $(LANGTOOLS_TEST_LIST)
################################################################