aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlana <none@none>2011-04-10 10:17:36 -0700
committerlana <none@none>2011-04-10 10:17:36 -0700
commitf9b05e051116bfcdbff6b0c0850dfbbad5c75f4f (patch)
tree8973f2cd89e77412eed575274452c2b881d96735 /test
parent07ba41474408fcdf1ff36c2ecc4b1463297dc012 (diff)
parent5b40e1d85aa9519610583d0efe6b37c51b3ed7fd (diff)
Merge
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)
################################################################