Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
f646b744
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看板
提交
f646b744
编写于
10月 29, 2015
作者:
I
igerasim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8139373: [TEST_BUG] java/net/MulticastSocket/MultiDead.java failed with timeout
Reviewed-by: chegar
上级
28e48472
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
2 deletion
+16
-2
test/java/net/MulticastSocket/MultiDead.java
test/java/net/MulticastSocket/MultiDead.java
+15
-1
test/lib/testlibrary/jdk/testlibrary/Utils.java
test/lib/testlibrary/jdk/testlibrary/Utils.java
+1
-1
未找到文件。
test/java/net/MulticastSocket/MultiDead.java
浏览文件 @
f646b744
...
...
@@ -35,11 +35,17 @@ import java.net.MulticastSocket;
import
java.util.concurrent.atomic.AtomicBoolean
;
import
java.util.concurrent.atomic.AtomicReference
;
import
java.util.concurrent.CountDownLatch
;
import
static
java
.
util
.
concurrent
.
TimeUnit
.
MILLISECONDS
;
import
jdk.testlibrary.JDKToolLauncher
;
import
jdk.testlibrary.Utils
;
public
class
MultiDead
{
private
static
final
int
THREAD_PAIR_COUNT
=
4
;
private
static
final
int
CHILDREN_COUNT
=
20
;
// at least 2.5 seconds for a child to complete
private
static
final
long
CHILD_TIMEOUT
=
2500
;
private
static
final
long
TIMEOUT
=
Utils
.
adjustTimeout
(
CHILDREN_COUNT
*
CHILD_TIMEOUT
*
2
);
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
if
(
args
.
length
==
0
||
args
[
0
].
equals
(
"parent"
))
{
...
...
@@ -65,6 +71,7 @@ public class MultiDead {
for
(
int
i
=
0
;
i
<
CHILDREN_COUNT
;
++
i
)
{
System
.
out
.
println
(
"child #"
+
(
i
+
1
)
+
" of "
+
CHILDREN_COUNT
);
long
start
=
System
.
nanoTime
();
try
{
child
.
set
(
pb
.
start
());
child
.
get
().
waitFor
();
...
...
@@ -74,11 +81,18 @@ public class MultiDead {
}
catch
(
Exception
e
)
{
throw
new
RuntimeException
(
e
);
}
if
(
System
.
nanoTime
()
-
start
>
MILLISECONDS
.
toNanos
(
CHILD_TIMEOUT
))
{
System
.
err
.
println
(
"Machine is too slow, "
+
"skipping the test..."
);
break
;
}
}
});
th
.
start
();
th
.
join
(
CHILDREN_COUNT
*
1000
);
// 1 sec for a child to complete
th
.
join
(
TIMEOUT
);
stopFlag
.
set
(
true
);
if
(
th
.
isAlive
())
{
if
(
child
.
get
()
!=
null
)
{
...
...
test/lib/testlibrary/jdk/testlibrary/Utils.java
浏览文件 @
f646b744
...
...
@@ -66,7 +66,7 @@ public final class Utils {
public
static
final
double
TIMEOUT_FACTOR
;
static
{
String
toFactor
=
System
.
getProperty
(
"test.timeout.factor"
,
"1.0"
);
TIMEOUT_FACTOR
=
Double
.
parseDouble
(
toFactor
);
TIMEOUT_FACTOR
=
Double
.
parseDouble
(
toFactor
);
}
/**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录