Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
2368bd92
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看板
提交
2368bd92
编写于
11月 09, 2009
作者:
O
ohair
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6899444: Fix demo/jvmti tests so they can run in jtreg samevm mode, cleanup problemlist
Reviewed-by: tbell
上级
d330c3d1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
35 deletion
+5
-35
test/ProblemList.txt
test/ProblemList.txt
+0
-34
test/demo/jvmti/DemoRun.java
test/demo/jvmti/DemoRun.java
+5
-1
未找到文件。
test/ProblemList.txt
浏览文件 @
2368bd92
...
...
@@ -512,26 +512,6 @@ com/sun/jndi/rmi/registry/RegistryContext/UnbindIdempotent.java generic-all
# Need to be marked othervm, or changed to be samevm safe
com/sun/org/apache/xml/internal/security/transforms/ClassLoaderTest.java generic-all
# Need to be marked othervm, or changed to be samevm safe
demo/jvmti/gctest/Gctest.java generic-all
demo/jvmti/heapTracker/HeapTrackerTest.java generic-all
demo/jvmti/heapViewer/HeapViewerTest.java generic-all
demo/jvmti/hprof/CpuOldTest.java generic-all
demo/jvmti/hprof/CpuSamplesTest.java generic-all
demo/jvmti/hprof/CpuTimesDefineClassTest.java generic-all
demo/jvmti/hprof/CpuTimesTest.java generic-all
demo/jvmti/hprof/HeapAllTest.java generic-all
demo/jvmti/hprof/HeapBinaryFormatTest.java generic-all
demo/jvmti/hprof/HeapDumpTest.java generic-all
demo/jvmti/hprof/HeapSitesTest.java generic-all
demo/jvmti/hprof/MonitorTest.java generic-all
demo/jvmti/hprof/OptionsTest.java generic-all
demo/jvmti/hprof/StackMapTableTest.java generic-all
demo/jvmti/minst/MinstTest.java generic-all
demo/jvmti/mtrace/TraceJFrame.java generic-all
demo/jvmti/versionCheck/FailsWhenJvmtiVersionDiffers.java generic-all
demo/jvmti/waiters/WaitersTest.java generic-all
# Solaris sparc and others, exception in initializer
javax/imageio/CachePremissionsTest/CachePermissionsTest.java generic-all
...
...
@@ -1124,20 +1104,6 @@ java/text/Bidi/Bug6665028.java linux-x64
# Solaris 10 client x86, java.lang.IndexOutOfBoundsException resumer Interrupted
com/sun/jdi/SimulResumerTest.java generic-all
# OpenSolaris failures, Missing /usr/ucb/ps
com/sun/jdi/ArrayLengthDumpTest.sh generic-all
com/sun/jdi/CatchCaughtTest.sh generic-all
com/sun/jdi/CatchPatternTest.sh generic-all
com/sun/jdi/GetLocalVariables3Test.sh generic-all
com/sun/jdi/GetLocalVariables4Test.sh generic-all
com/sun/jdi/JdbMethodExitTest.sh generic-all
com/sun/jdi/JdbMissStep.sh generic-all
com/sun/jdi/JdbVarargsTest.sh generic-all
com/sun/jdi/NotAField.sh generic-all
com/sun/jdi/Redefine-g.sh generic-all
com/sun/jdi/RedefineImplementor.sh generic-all
com/sun/jdi/RedefineMulti.sh generic-all
# Output of jps differs from expected output.
# Invalid argument count on solaris-sparc and x64
sun/tools/jstatd/jstatdPort.sh generic-all
...
...
test/demo/jvmti/DemoRun.java
浏览文件 @
2368bd92
...
...
@@ -145,7 +145,7 @@ public class DemoRun {
*/
int
nvm_options
=
0
;
if
(
vm_options
!=
null
)
nvm_options
=
vm_options
.
length
;
String
cmd
[]
=
new
String
[
1
+
(
d64
?
1
:
0
)
+
5
+
nvm_options
];
String
cmd
[]
=
new
String
[
1
+
(
d64
?
1
:
0
)
+
7
+
nvm_options
];
String
cmdLine
;
int
exitStatus
;
int
i
,
j
;
...
...
@@ -154,6 +154,10 @@ public class DemoRun {
cmdLine
=
""
;
cmdLine
+=
(
cmd
[
i
++]
=
java
);
cmdLine
+=
" "
;
cmdLine
+=
(
cmd
[
i
++]
=
"-cp"
);
cmdLine
+=
" "
;
cmdLine
+=
(
cmd
[
i
++]
=
cdir
);
cmdLine
+=
" "
;
cmdLine
+=
(
cmd
[
i
++]
=
"-Dtest.classes="
+
cdir
);
if
(
d64
)
{
cmdLine
+=
" "
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录