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
I ran the aqua-test with jdk21 on Linux , but some system-tests failed.
failed tests in _sanity.system
not ok 6 - TestJlmRemoteClassAuth_0
not ok 7 - TestJlmRemoteClassAuth_1
not ok 9 - TestJlmRemoteClassNoAuth_0
not ok 10 - TestJlmRemoteClassNoAuth_1
not ok 12 - TestJlmRemoteMemoryAuth_0
not ok 13 - TestJlmRemoteMemoryAuth_1
not ok 15 - TestJlmRemoteMemoryNoAuth_0
not ok 16 - TestJlmRemoteMemoryNoAuth_1
not ok 18 - TestJlmRemoteNotifierProxyAuth_0
not ok 19 - TestJlmRemoteNotifierProxyAuth_1
not ok 21 - TestJlmRemoteThreadAuth_0
not ok 22 - TestJlmRemoteThreadAuth_1
not ok 24 - TestJlmRemoteThreadNoAuth_0
not ok 25 - TestJlmRemoteThreadNoAuth_1
not ok 28 - LambdaLoadTest_HS_5m_0
not ok 29 - LambdaLoadTest_HS_5m_1
not ok 31 - ParallelStreamsLoadTest_HS_0
not ok 32 - ParallelStreamsLoadTest_HS_1
not ok 35 - MathLoadTest_autosimd_5m_0
not ok 36 - MathLoadTest_autosimd_5m_1
not ok 38 - MathLoadTest_bigdecimal_5m_0
not ok 39 - MathLoadTest_bigdecimal_5m_1
not ok 42 - MauveSingleThrdLoad_HS_5m_0
not ok 43 - MauveSingleThrdLoad_HS_5m_1
not ok 45 - MauveSingleInvocLoad_HS_5m_0
not ok 46 - MauveSingleInvocLoad_HS_5m_1
not ok 48 - MauveMultiThrdLoad_5m_0
not ok 49 - MauveMultiThrdLoad_5m_1
not ok 151 - CLLoad_0
not ok 152 - CLLoad_1
not ok 161 - ClassLoadingTest_5m_0
not ok 162 - ClassLoadingTest_5m_1
not ok 164 - NioLoadTest_5m_0
not ok 165 - NioLoadTest_5m_1
failed tests in _extended.system
not ok 5 - MathLoadTest_all_5m_0
not ok 6 - MathLoadTest_all_5m_1
not ok 11 - MiniMix_5m_0
not ok 12 - MiniMix_5m_1
not ok 14 - MiniMix_10m_0
not ok 15 - MiniMix_10m_1
not ok 17 - MiniMix_aot_5m_0
not ok 18 - ConcurrentLoadTest_5m_0
not ok 19 - ConcurrentLoadTest_5m_1
not ok 21 - DBBLoadTest_5m_0
not ok 22 - DBBLoadTest_5m_1
not ok 24 - LangLoadTest_5m_0
not ok 25 - LangLoadTest_5m_1
not ok 27 - LockingLoadTest_0
not ok 28 - LockingLoadTest_1
not ok 30 - UtilLoadTest_5m_0
not ok 31 - UtilLoadTest_5m_1
Exception in thread "main" java.lang.LinkageError: loader 'app' attempted duplicate class definition for org.apache.logging.log4j.core.impl.MutableLogEvent. (org.apache.logging.log4j.core.impl.MutableLogEvent is in unnamed module of loader 'app')
I enabled JFR and jdk.ClassLoad, jdk.ClassDefinition, jdk.ClassRedefinition and jdk.ClassUnload event collected. The jdk.ClassDefine and jdk.ClassLoad events for MutableLogEvent were logged just before java.lang.LinkageError was thrown.
I think net.adoptopenjdk.blockedexitagent.BlockedExitAgent rewrited MutableLogEvent using ASM package.
I suspect the impact of the following commit on January 30. adoptium/STF#143
net.adoptopenjdk.blockedexitagent.BlockedExitAgent rewrite MutableLogEvent class with org.objectweb.asm package after this change.
The text was updated successfully, but these errors were encountered:
I ran the aqua-test with jdk21 on Linux , but some system-tests failed.
failed tests in _sanity.system
failed tests in _extended.system
These tests fail in any test pipelines now.
https://ci.adoptium.net/view/Test_system/job/Test_openjdk24_hs_sanity.system_x86-64_alpine-linux/26/
They seem to fail for the same reason.
I enabled JFR and jdk.ClassLoad, jdk.ClassDefinition, jdk.ClassRedefinition and jdk.ClassUnload event collected. The jdk.ClassDefine and jdk.ClassLoad events for MutableLogEvent were logged just before java.lang.LinkageError was thrown.
I think net.adoptopenjdk.blockedexitagent.BlockedExitAgent rewrited MutableLogEvent using ASM package.
JFR event log
I suspect the impact of the following commit on January 30.
adoptium/STF#143
net.adoptopenjdk.blockedexitagent.BlockedExitAgent rewrite MutableLogEvent class with org.objectweb.asm package after this change.
The text was updated successfully, but these errors were encountered: