Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8
提交
76fd76c7
D
dragonwell8
项目概览
openanolis
/
dragonwell8
通知
5
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
76fd76c7
编写于
9月 04, 2013
作者:
E
erikj
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
da03fe3b
b495c980
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
11 addition
and
48 deletion
+11
-48
.hgtags
.hgtags
+1
-0
NewMakefile.gmk
NewMakefile.gmk
+2
-1
common/makefiles/Main.gmk
common/makefiles/Main.gmk
+1
-1
test/Makefile
test/Makefile
+7
-46
未找到文件。
.hgtags
浏览文件 @
76fd76c7
...
...
@@ -226,3 +226,4 @@ d2dcb110e9dbaf9903c05b211df800e78e4b394e jdk8-b100
5eb3c1dc348f72a7f84f7d9d07834e8bbe09a799 jdk8-b102
b7e64be81c8a7690703df5711f4fc2375da8a9cb jdk8-b103
96c1b9b7524b52c3fcefc90ffad4c767396727c8 jdk8-b104
5166118c59178b5d31001bc4058e92486ee07d9b jdk8-b105
NewMakefile.gmk
浏览文件 @
76fd76c7
...
...
@@ -98,6 +98,7 @@ help:
$(info . # corba and jdk)
$(info . make all # Compile everything, all repos and images)
$(info . make images # Create complete j2sdk and j2re images)
$(info . make docs # Create javadocs)
$(info . make overlay-images # Create limited images for sparc 64 bit platforms)
$(info . make profiles # Create complete j2re compact profile images)
$(info . make bootcycle-images # Build images twice, second time with newly build JDK)
...
...
@@ -109,7 +110,7 @@ help:
$(info . make test # Run tests, default is all tests (see TEST below))
$(info )
$(info Targets for specific components)
$(info (Component is any of langtools, corba, jaxp, jaxws, hotspot, jdk,
images or overlay-images
))
$(info (Component is any of langtools, corba, jaxp, jaxws, hotspot, jdk,
nashorn, images, overlay-images, docs or test
))
$(info . make <component> # Build <component> and everything it depends on. )
$(info . make <component>-only # Build <component> only, without dependencies. This)
$(info . # is faster but can result in incorrect build results!)
...
...
common/makefiles/Main.gmk
浏览文件 @
76fd76c7
...
...
@@ -183,7 +183,7 @@ bootcycle-images-only: start-make
test: images test-only
test-only: start-make
@$(call TargetEnter)
@($(CD) $(SRC_ROOT)/test && $(BUILD_LOG_WRAPPER) $(MAKE) -j1 -k MAKEFLAGS= JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR)
JPRT_JAVA_HOME=$(JDK_IMAGE_DIR)
ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true
@($(CD) $(SRC_ROOT)/test && $(BUILD_LOG_WRAPPER) $(MAKE) -j1 -k MAKEFLAGS= JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR) ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true
@$(call TargetExit)
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
...
...
test/Makefile
浏览文件 @
76fd76c7
...
...
@@ -49,61 +49,22 @@ else \
fi
endef
# Test target list for langtools repository
LANGTOOLS_TEST_LIST
=
langtools_jtreg
# Test target list for jdk repository
JDK_ALL_TEST_LIST
=
\
jdk_beans1
\
jdk_io
\
jdk_lang
\
jdk_math
\
jdk_other
\
jdk_net
\
jdk_nio
\
jdk_security1
\
jdk_text
\
jdk_util
\
jdk_time
\
jdk_awt
\
jdk_beans2 jdk_beans3
\
jdk_management
\
jdk_jmx
\
jdk_security2 jdk_security3
\
jdk_rmi
\
jdk_sound
\
jdk_swing
\
jdk_tools
\
jdk_jdi
\
jdk_jfr
# Theses are meta test targets in jdk
JDK_META_TEST_LIST
=
jdk_all jdk_default jdk_core
# These are the current jck test targets in the jdk repository
JDK_JCK7_LIST
=
jck7devtools jck7compiler jck7runtime
# Default test target (core)
default
:
jdk_core
$(LANGTOOLS_TEST_LIST)
default
:
jdk_core
langtools_jtreg
# All testing
all
:
$(JDK_ALL_TEST_LIST) $(LANGTOOLS_TEST_LIST)
all
:
jdk_all langtools_all
# Test targets
$(LANGTOOLS_TEST_LIST)
:
@
$(NO_STOPPING)
$(
call
SUBDIR_TEST,
$(LANGTOOLS_DIR)
,
$(
subst
langtools_,,
$@
))
$(JDK_ALL_TEST_LIST) $(JDK_META_TEST_LIST) $(JDK_JCK7_LIST)
:
@
$(NO_STOPPING)
$(
call
SUBDIR_TEST,
$(JDK_DIR)
,
$@
)
langtools_%
:
@
$(NO_STOPPING)
$(
call
SUBDIR_TEST,
$(LANGTOOLS_DIR)
,
JT_JAVA
=
$(PRODUCT_HOME)
JTREG_HOME
=
$(JT_HOME)
TEST
=
"
$(
subst
langtools_,,
$@
)
"
$(
subst
langtools_,,
$@
))
clean
:
jdk_%
:
@
$(NO_STOPPING)
$(
call
SUBDIR_TEST,
$(JDK_DIR)
,
TEST
=
"
$@
"
$@
)
################################################################
# Phony targets (e.g. these are not filenames)
.PHONY
:
all clean
\
$(JDK_ALL_TEST_LIST) $(JDK_META_TEST_LIST) $(JDK_JCK7_LIST)
\
$(LANGTOOLS_TEST_LIST)
.PHONY
:
all clean
################################################################
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录