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/java/beans/XMLDecoder/8028054/TestConstructorFinder.java run fail by dragonwell8
To Reproduce jtreg jdk/test/java/beans/XMLDecoder/8028054/TestConstructorFinder.java
java.lang.UnsatisfiedLinkError: java.dyn.CoroutineSupport.registerNatives()V
at java.dyn.CoroutineSupport.registerNatives(Native Method)
at java.dyn.CoroutineSupport.<clinit>(CoroutineSupport.java:60)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:264)
at Task.getClasses(Task.java:90)
at TestConstructorFinder.main(TestConstructorFinder.java:42)
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 can't load native library registerNatives. But only enable Coroutine dragonwell can load registerNatives.
So, can we add this testcase to alibaba problemlist?
Yes, please do 👍
sendaoYan
changed the title
TestConstructorFinder.java run fail by dragonwell8
TestConstructorFinder.java run fail by dragonwell8/dragonwell11
Jun 13, 2022
Describe the bug
jdk/test/java/beans/XMLDecoder/8028054/TestConstructorFinder.java run fail by dragonwell8
To Reproduce
jtreg jdk/test/java/beans/XMLDecoder/8028054/TestConstructorFinder.java
Expected behavior
The reason of this testcase run fail, is dragonwell can't load native library registerNatives. But only enable Coroutine dragonwell can load registerNatives.
If we modify this case like this:
Then this testcase will run pass:
So, can we add this testcase to alibaba problemlist?
The text was updated successfully, but these errors were encountered: