Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
4d47c8ee
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看板
提交
4d47c8ee
编写于
4月 17, 2013
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
9b0c00f0
331bd38a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
19 addition
and
6 deletion
+19
-6
test/java/lang/instrument/RedefineMethodWithAnnotations.sh
test/java/lang/instrument/RedefineMethodWithAnnotations.sh
+3
-2
test/java/lang/instrument/RedefineMethodWithAnnotationsTarget.java
.../lang/instrument/RedefineMethodWithAnnotationsTarget.java
+8
-2
test/java/lang/instrument/RedefineMethodWithAnnotationsTarget_2.java
...ang/instrument/RedefineMethodWithAnnotationsTarget_2.java
+8
-2
未找到文件。
test/java/lang/instrument/RedefineMethodWithAnnotations.sh
浏览文件 @
4d47c8ee
...
...
@@ -68,11 +68,12 @@ cp "${TESTSRC}"/RedefineMethodWithAnnotationsAnnotations.java \
RedefineMethodWithAnnotationsAnnotations.java
"
${
JAVA
}
"
${
TESTVMOPTS
}
-javaagent
:RedefineMethodWithAnnotationsAgent.jar
\
-XX
:+StressLdcRewrite
-XX
:+IgnoreUnrecognizedVMOptions
\
-cp
"
${
TESTCLASSES
}
"
RedefineMethodWithAnnotationsApp
>
output.log 2>&1
cat
output.log
MESG
=
"Exception"
grep
"
$MESG
"
output.log
MESG
=
"Exception
|fatal
"
e
grep
"
$MESG
"
output.log
result
=
$?
if
[
"
$result
"
=
0
]
;
then
echo
"FAIL: found '
$MESG
' in the test output"
...
...
test/java/lang/instrument/RedefineMethodWithAnnotationsTarget.java
浏览文件 @
4d47c8ee
...
...
@@ -27,7 +27,13 @@
*/
public
class
RedefineMethodWithAnnotationsTarget
{
public
void
annotatedMethod
(
@ParameterAnnotation
(
value
=
ParameterAnnotation
.
STRING_VALUE_1
)
String
parameter
)
{
}
value
=
ParameterAnnotation
.
STRING_VALUE_1
)
String
parameter
)
{
System
.
out
.
println
(
"First version of annotatedMethod(String)"
);
System
.
out
.
println
(
"parameter is "
+
parameter
);
}
public
void
annotatedMethod
(
@ParameterAnnotation
(
value
=
ParameterAnnotation
.
INT_VALUE_1
)
int
parameter
)
{
}
value
=
ParameterAnnotation
.
INT_VALUE_1
)
int
parameter
)
{
System
.
out
.
println
(
"First version of annotatedMethod(int)"
);
System
.
out
.
println
(
"parameter is "
+
parameter
);
}
}
test/java/lang/instrument/RedefineMethodWithAnnotationsTarget_2.java
浏览文件 @
4d47c8ee
...
...
@@ -29,7 +29,13 @@
*/
public
class
RedefineMethodWithAnnotationsTarget
{
public
void
annotatedMethod
(
@ParameterAnnotation
(
value
=
ParameterAnnotation
.
INT_VALUE_2
)
int
parameter
)
{
}
value
=
ParameterAnnotation
.
INT_VALUE_2
)
int
parameter
)
{
System
.
out
.
println
(
"Second version of annotatedMethod(int)"
);
System
.
out
.
println
(
"parameter is "
+
parameter
);
}
public
void
annotatedMethod
(
@ParameterAnnotation
(
value
=
ParameterAnnotation
.
STRING_VALUE_2
)
String
parameter
)
{
}
value
=
ParameterAnnotation
.
STRING_VALUE_2
)
String
parameter
)
{
System
.
out
.
println
(
"Second version of annotatedMethod(String)"
);
System
.
out
.
println
(
"parameter is "
+
parameter
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录