Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
4a54b282
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4a54b282
编写于
5月 18, 2009
作者:
O
ohair
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6842023: Improve test reliability, Increase timeout factor on jtreg tests, etc.
Reviewed-by: tbell
上级
64cb330a
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
15 addition
and
11 deletion
+15
-11
make/jprt.properties
make/jprt.properties
+11
-11
test/Makefile
test/Makefile
+1
-0
test/java/lang/ThreadGroup/NullThreadName.java
test/java/lang/ThreadGroup/NullThreadName.java
+1
-0
test/java/util/ResourceBundle/RestrictedBundleTest.java
test/java/util/ResourceBundle/RestrictedBundleTest.java
+1
-0
test/java/util/WeakHashMap/GCDuringIteration.java
test/java/util/WeakHashMap/GCDuringIteration.java
+1
-0
未找到文件。
make/jprt.properties
浏览文件 @
4a54b282
...
@@ -54,18 +54,18 @@ jprt.solaris_x64.build.platform.match32=solaris_i586_5.10
...
@@ -54,18 +54,18 @@ jprt.solaris_x64.build.platform.match32=solaris_i586_5.10
# Standard list of jprt test targets for this workspace
# Standard list of jprt test targets for this workspace
jprt.test.targets
=
*-*-*-jvm98
jprt.test.targets
=
*-*-*-jvm98
jprt.regression.test.targets
=
\
jprt.regression.test.targets
=
\
*-
*
-*-java/lang,
\
*-
product
-*-java/lang,
\
*-
*
-*-java/security,
\
*-
product
-*-java/security,
\
*-
*
-*-java/text,
\
*-
product
-*-java/text,
\
*-
*
-*-java/util
*-
product
-*-java/util
#jprt.regression.test.targets= \
#jprt.regression.test.targets= \
# *-
*
-*-java/awt, \
# *-
product
-*-java/awt, \
# *-
*
-*-java/beans, \
# *-
product
-*-java/beans, \
# *-
*
-*-java/io, \
# *-
product
-*-java/io, \
# *-
*
-*-java/net, \
# *-
product
-*-java/net, \
# *-
*
-*-java/nio, \
# *-
product
-*-java/nio, \
# *-
*
-*-java/rmi, \
# *-
product
-*-java/rmi, \
# Directories needed to build
# Directories needed to build
jprt.bundle.exclude.src.dirs
=
build
jprt.bundle.exclude.src.dirs
=
build
...
...
test/Makefile
浏览文件 @
4a54b282
...
@@ -189,6 +189,7 @@ jtreg_tests: prep $(JT_HOME) $(PRODUCT_HOME) $(JTREG)
...
@@ -189,6 +189,7 @@ jtreg_tests: prep $(JT_HOME) $(PRODUCT_HOME) $(JTREG)
$(
shell
$(GETMIXEDPATH)
"
$(JTREG)
"
)
\
$(
shell
$(GETMIXEDPATH)
"
$(JTREG)
"
)
\
-a
-v
:fail,error
\
-a
-v
:fail,error
\
-ignore
:quiet
\
-ignore
:quiet
\
-timeoutFactor
:2
\
$(EXTRA_JTREG_OPTIONS)
\
$(EXTRA_JTREG_OPTIONS)
\
-r
:
$(
shell
$(GETMIXEDPATH)
"
$(ABS_TEST_OUTPUT_DIR)
"
)
/JTreport
\
-r
:
$(
shell
$(GETMIXEDPATH)
"
$(ABS_TEST_OUTPUT_DIR)
"
)
/JTreport
\
-w
:
$(
shell
$(GETMIXEDPATH)
"
$(ABS_TEST_OUTPUT_DIR)
"
)
/JTwork
\
-w
:
$(
shell
$(GETMIXEDPATH)
"
$(ABS_TEST_OUTPUT_DIR)
"
)
/JTwork
\
...
...
test/java/lang/ThreadGroup/NullThreadName.java
浏览文件 @
4a54b282
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*
/*
* @test
* @test
* @bug 6576763
* @bug 6576763
* @ignore until hotspot 6776144 bug is resolved
* @summary (thread) Thread constructors throw undocumented NPE for null name
* @summary (thread) Thread constructors throw undocumented NPE for null name
*/
*/
...
...
test/java/util/ResourceBundle/RestrictedBundleTest.java
浏览文件 @
4a54b282
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
/**
/**
* @test
* @test
* @bug 4126805
* @bug 4126805
* @ignore until 6842022 is resolved
* @run applet RestrictedBundleTest.html
* @run applet RestrictedBundleTest.html
* @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2
* @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2
* build. It appears that it was fixed by changes to the class-loading mechanism,
* build. It appears that it was fixed by changes to the class-loading mechanism,
...
...
test/java/util/WeakHashMap/GCDuringIteration.java
浏览文件 @
4a54b282
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*
/*
* @test
* @test
* @bug 6499848
* @bug 6499848
* @ignore until 6842353 is resolved
* @summary Check that iterators work properly in the presence of
* @summary Check that iterators work properly in the presence of
* concurrent finalization and removal of elements.
* concurrent finalization and removal of elements.
*/
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录