You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
jdk/test/com/sun/jdi/StepTest.java run fail by dragonwell8
To Reproduce jtreg jdk/test/com/sun/jdi/StepTest.java
result:
java.lang.IllegalArgumentException: Bad method name/signature: com.alibaba.rcm.internal.AbstractResourceContainer.go:()V
at TestScaffold.resumeTo(TestScaffold.java:844)
at StepTest.runTests(StepTest.java:131)
at TestScaffold.startTests(TestScaffold.java:429)
at StepTest.main(StepTest.java:105)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.sun.javatest.regtest.agent.MainWrapper$MainThread.run(MainWrapper.java:127)
at java.lang.Thread.run(Thread.java:855)
Expected behavior
The reason of this testcase run fail, is dragonwell add class "com.alibaba.rcm.internal.AbstractResourceContainer", which has a method signature: "com.alibaba.rcm.internal.AbstractResourceContainer.go:()V", conflict with testcase's go() method.
If we modify testcase, then this test will run success(add "com.alibaba.*" as exclude in doStep method):
So, can we add this testcase to alibaba problemlist?
The text was updated successfully, but these errors were encountered:
sendaoYan
changed the title
StepTest.java run fail by dragonwell8
StepTest.java run fail by dragonwell8/dragonwell11
Jun 13, 2022
Describe the bug
jdk/test/com/sun/jdi/StepTest.java run fail by dragonwell8
To Reproduce
jtreg jdk/test/com/sun/jdi/StepTest.java
result:
Expected behavior
The reason of this testcase run fail, is dragonwell add class "com.alibaba.rcm.internal.AbstractResourceContainer", which has a method signature: "com.alibaba.rcm.internal.AbstractResourceContainer.go:()V", conflict with testcase's go() method.
If we modify testcase, then this test will run success(add "com.alibaba.*" as exclude in doStep method):
So, can we add this testcase to alibaba problemlist?
The text was updated successfully, but these errors were encountered: