提交 4d47c8ee 编写于 作者: L lana

Merge

...@@ -68,11 +68,12 @@ cp "${TESTSRC}"/RedefineMethodWithAnnotationsAnnotations.java \ ...@@ -68,11 +68,12 @@ cp "${TESTSRC}"/RedefineMethodWithAnnotationsAnnotations.java \
RedefineMethodWithAnnotationsAnnotations.java RedefineMethodWithAnnotationsAnnotations.java
"${JAVA}" ${TESTVMOPTS} -javaagent:RedefineMethodWithAnnotationsAgent.jar \ "${JAVA}" ${TESTVMOPTS} -javaagent:RedefineMethodWithAnnotationsAgent.jar \
-XX:+StressLdcRewrite -XX:+IgnoreUnrecognizedVMOptions \
-cp "${TESTCLASSES}" RedefineMethodWithAnnotationsApp > output.log 2>&1 -cp "${TESTCLASSES}" RedefineMethodWithAnnotationsApp > output.log 2>&1
cat output.log cat output.log
MESG="Exception" MESG="Exception|fatal"
grep "$MESG" output.log egrep "$MESG" output.log
result=$? result=$?
if [ "$result" = 0 ]; then if [ "$result" = 0 ]; then
echo "FAIL: found '$MESG' in the test output" echo "FAIL: found '$MESG' in the test output"
......
...@@ -27,7 +27,13 @@ ...@@ -27,7 +27,13 @@
*/ */
public class RedefineMethodWithAnnotationsTarget { public class RedefineMethodWithAnnotationsTarget {
public void annotatedMethod(@ParameterAnnotation( 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( 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);
}
} }
...@@ -29,7 +29,13 @@ ...@@ -29,7 +29,13 @@
*/ */
public class RedefineMethodWithAnnotationsTarget { public class RedefineMethodWithAnnotationsTarget {
public void annotatedMethod(@ParameterAnnotation( 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( 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.
先完成此消息的编辑!
想要评论请 注册