Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this the different way 11 and 17 handle duplicate classes? #8692

Open
AidPaike opened this issue Apr 3, 2024 · 2 comments
Open

Is this the different way 11 and 17 handle duplicate classes? #8692

AidPaike opened this issue Apr 3, 2024 · 2 comments
Assignees
Labels

Comments

@AidPaike
Copy link

AidPaike commented Apr 3, 2024

Version

GraalVM-jdk11,22.0.0.2
GraalVM-jdk17,22.3-b08

Test case 1

public class test {

    A create() throws Exception {
        String algo = "hello";
        if (algo.equals("RSA")) {
        }
        return new A();
    }

    public static void main(String[] args) throws Exception {
        System.out.println(new test().create());
    }
}

GraalVM-jdk11 Output

Exception in thread "main" java.lang.SecurityException: class "A"'s signer information does not match signer information of other classes in the same package
	at java.base/java.lang.ClassLoader.checkCerts(ClassLoader.java:1151)
	at java.base/java.lang.ClassLoader.preDefineClass(ClassLoader.java:906)
	at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1015)
	at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:174)
	at java.base/jdk.internal.loader.BuiltinClassLoader.defineClass(BuiltinClassLoader.java:800)
	at java.base/jdk.internal.loader.BuiltinClassLoader.findClassOnClassPathOrNull(BuiltinClassLoader.java:698)
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClassOrNull(BuiltinClassLoader.java:621)
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:579)
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
	at MyJVMTest_14379.create(MyJVMTest_14379.java:8)
	at MyJVMTest_14379.main(MyJVMTest_14379.java:12)

GraalVM-jdk17 Output

A@ba4d54

Expected Output

A@ba4d54

shell

openj9-jdk17

javac timeout -s9 30 /root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/bin/javac -XDignore.symbol.file -classpath /root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/images/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.60.19-ca-jdk11.0.17-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.3.0/lib:/JVMfuzzing/htm/java_code/HotspotOut:/JVMfuzzing/htm/java_code/HtmOut:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-jdk11_0723/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.54.25-ca-jdk11.0.14.1-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/lib:/root/shannonfuzz/fuzz/data/java_code/HotspotOut:/root/shannonfuzz/fuzz/data/java_code/Out:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/URLClassPath/testclasses.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/ClassLoaderUtil/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/bar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/resource.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsA/a.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsB/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JarSigning_RU.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/oldsig/A.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JavaApplication1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/AlgOptions.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/pkcs11/KeyStore/loader.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/launcher/UnicodeTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/pack200-verifier/data/golden.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/badattr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/management/loading/LibraryLoader/native.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/evilprov.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/Introspector/7064279/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/XMLDecoder/4676532/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/lang/instrument/PremainClass/Agent.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/Signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/no-manifest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/bogus-signerinfo-attr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/thawjar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/BadSignedJar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarEntry/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipEntry/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/crash.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/6212146/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/jars/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/Socket/OldSocketImpl.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/extdir/extention.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/sealing/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/getresourceasstream/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test_classpath.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/Security/ClassLoaderDeadlock/Deadlock.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/ProtectionDomain/AllPerm.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/JsrRewritingTestCase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/emptynumbootstrapmethods.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/EnclosingMethodAttr/enclMethodAttr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/LocalVariableTable/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/7116786/testcases.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/duplAttributes/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.replacements.verifier.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.options.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.nodeinfo.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.match.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.serviceprovider.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/interim-image/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/modules_libs/java.base/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/classlist.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/core/core.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/modules/org-netbeans-core-windows.jar /root/test.java -d /root/out
java timeout -s9 60 /root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/bin/java --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -cp /root/shannonfuzz-python/fuzz/shannon_v0/graal-jdk17/out:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/images/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.60.19-ca-jdk11.0.17-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.3.0/lib:/JVMfuzzing/htm/java_code/HotspotOut:/JVMfuzzing/htm/java_code/HtmOut:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-jdk11_0723/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.54.25-ca-jdk11.0.14.1-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/lib:/root/shannonfuzz/fuzz/data/java_code/HotspotOut:/root/shannonfuzz/fuzz/data/java_code/Out:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/URLClassPath/testclasses.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/ClassLoaderUtil/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/bar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/resource.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsA/a.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsB/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JarSigning_RU.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/oldsig/A.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JavaApplication1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/AlgOptions.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/pkcs11/KeyStore/loader.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/launcher/UnicodeTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/pack200-verifier/data/golden.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/badattr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/management/loading/LibraryLoader/native.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/evilprov.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/Introspector/7064279/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/XMLDecoder/4676532/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/lang/instrument/PremainClass/Agent.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/Signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/no-manifest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/bogus-signerinfo-attr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/thawjar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/BadSignedJar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarEntry/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipEntry/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/crash.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/6212146/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/jars/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/Socket/OldSocketImpl.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/extdir/extention.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/sealing/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/getresourceasstream/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test_classpath.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/Security/ClassLoaderDeadlock/Deadlock.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/ProtectionDomain/AllPerm.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/JsrRewritingTestCase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/emptynumbootstrapmethods.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/EnclosingMethodAttr/enclMethodAttr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/LocalVariableTable/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/7116786/testcases.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/duplAttributes/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.replacements.verifier.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.options.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.nodeinfo.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.match.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.serviceprovider.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/interim-image/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/modules_libs/java.base/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/classlist.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/core/core.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/modules/org-netbeans-core-windows.jar test ——illegal-access=permit

openj9-jdk11

javac timeout -s9 30 /root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/bin/javac -XDignore.symbol.file -classpath /root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/images/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.60.19-ca-jdk11.0.17-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.3.0/lib:/JVMfuzzing/htm/java_code/HotspotOut:/JVMfuzzing/htm/java_code/HtmOut:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-jdk11_0723/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.54.25-ca-jdk11.0.14.1-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/lib:/root/shannonfuzz/fuzz/data/java_code/HotspotOut:/root/shannonfuzz/fuzz/data/java_code/Out:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/URLClassPath/testclasses.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/ClassLoaderUtil/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/bar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/resource.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsA/a.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsB/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JarSigning_RU.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/oldsig/A.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JavaApplication1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/AlgOptions.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/pkcs11/KeyStore/loader.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/launcher/UnicodeTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/pack200-verifier/data/golden.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/badattr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/management/loading/LibraryLoader/native.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/evilprov.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/Introspector/7064279/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/XMLDecoder/4676532/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/lang/instrument/PremainClass/Agent.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/Signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/no-manifest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/bogus-signerinfo-attr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/thawjar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/BadSignedJar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarEntry/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipEntry/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/crash.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/6212146/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/jars/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/Socket/OldSocketImpl.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/extdir/extention.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/sealing/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/getresourceasstream/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test_classpath.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/Security/ClassLoaderDeadlock/Deadlock.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/ProtectionDomain/AllPerm.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/JsrRewritingTestCase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/emptynumbootstrapmethods.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/EnclosingMethodAttr/enclMethodAttr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/LocalVariableTable/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/7116786/testcases.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/duplAttributes/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.replacements.verifier.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.options.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.nodeinfo.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.match.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.serviceprovider.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/interim-image/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/modules_libs/java.base/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/classlist.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/core/core.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/modules/org-netbeans-core-windows.jar /root/test.java -d /root/out
java ``` timeout -s9 60 /root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/bin/java --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -cp /root/shannonfuzz-python/fuzz/shannon_v0/graal-jdk11/out:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/images/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.60.19-ca-jdk11.0.17-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.3.0/lib:/JVMfuzzing/htm/java_code/HotspotOut:/JVMfuzzing/htm/java_code/HtmOut:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-jdk11_0723/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.54.25-ca-jdk11.0.14.1-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/lib:/root/shannonfuzz/fuzz/data/java_code/HotspotOut:/root/shannonfuzz/fuzz/data/java_code/Out:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/URLClassPath/testclasses.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/ClassLoaderUtil/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/bar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/resource.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsA/a.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsB/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JarSigning_RU.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/oldsig/A.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JavaApplication1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/AlgOptions.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/pkcs11/KeyStore/loader.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/launcher/UnicodeTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/pack200-verifier/data/golden.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/badattr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/management/loading/LibraryLoader/native.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/evilprov.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/Introspector/7064279/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/XMLDecoder/4676532/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/lang/instrument/PremainClass/Agent.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/Signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/no-manifest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/bogus-signerinfo-attr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/thawjar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/BadSignedJar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarEntry/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipEntry/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/crash.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/6212146/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/jars/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/Socket/OldSocketImpl.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/extdir/extention.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/sealing/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/getresourceasstream/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test_classpath.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/Security/ClassLoaderDeadlock/Deadlock.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/ProtectionDomain/AllPerm.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/JsrRewritingTestCase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/emptynumbootstrapmethods.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/EnclosingMethodAttr/enclMethodAttr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/LocalVariableTable/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/7116786/testcases.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/duplAttributes/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.replacements.verifier.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.options.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.nodeinfo.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.match.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.serviceprovider.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/interim-image/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/modules_libs/java.base/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/classlist.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/core/core.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/modules/org-netbeans-core-windows.jar', 'MyJVMTest_85163', '——illegal-access=permit']java cmd:java cmd: ['timeout', '-s9', '60', '/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/bin/java', '--add-opens=java.base/sun.nio.ch=ALL-UNNAMED', '-cp', '/root/shannonfuzz-python/fuzz/shannon_v0/zulu-jdk17/out:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/images/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.60.19-ca-jdk11.0.17-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.3.0/lib:/JVMfuzzing/htm/java_code/HotspotOut:/JVMfuzzing/htm/java_code/HtmOut:/root/jvm/openjdk17/jdk-17.0.5+8/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/openjdk11/jdk-11.0.14-ga/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk11/openj9-jdk11_0723/openj9-openjdk-jdk11/build/linux-x86_64-normal-server-release/images/jdk/lib:/root/jvm/openj9-jdk17/openj9-openjdk-jdk17/build/linux-x86_64-server-release/images/jdk/lib:/root/jvm/zulu-jdk17/zulu17.38.21-ca-jdk17.0.5-linux_x64/lib:/root/jvm/zulu-jdk11/zulu11.54.25-ca-jdk11.0.14.1-linux_x64/lib:/root/jvm/graal-jdk17/graalvm-ce-java17-22.3.0/lib:/root/jvm/graal-jdk11/graalvm-ce-java11-22.0.0.2/lib:/root/shannonfuzz/fuzz/data/java_code/HotspotOut:/root/shannonfuzz/fuzz/data/java_code/Out:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/URLClassPath/testclasses.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/misc/ClassLoaderUtil/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/bar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/resource.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/net/www/protocol/jar/foo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsA/a.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/provider/PolicyParser/ExtDirsB/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JarSigning_RU.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/oldsig/A.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/JavaApplication1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/tools/jarsigner/AlgOptions.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/sun/security/pkcs11/KeyStore/loader.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/launcher/UnicodeTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/pack200-verifier/data/golden.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/tools/pack200/badattr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/management/loading/LibraryLoader/native.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P1.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/evilprov.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/javax/crypto/SecretKeyFactory/P2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/Introspector/7064279/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/beans/XMLDecoder/4676532/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/lang/instrument/PremainClass/Agent.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/Signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/no-manifest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/bogus-signerinfo-attr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarFile/thawjar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/signed.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarInputStream/BadSignedJar.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/jar/JarEntry/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipEntry/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/crash.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/ZipFile/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/util/zip/input.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/6212146/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLConnection/jars/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/Socket/OldSocketImpl.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/extdir/extention.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/sealing/b.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/getresourceasstream/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/net/URLClassLoader/jars/class_path_test_classpath.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/Security/ClassLoaderDeadlock/Deadlock.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/jdk/java/security/ProtectionDomain/AllPerm.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/ClassFile/JsrRewritingTestCase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/emptynumbootstrapmethods.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/classFileParserBug/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/EnclosingMethodAttr/enclMethodAttr.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/LocalVariableTable/testcase.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/7116786/testcases.jar:/root/jvm/openjdk11/jdk-11.0.17+8/test/hotspot/jtreg/runtime/duplAttributes/test.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.replacements.verifier.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.options.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.nodeinfo.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.match.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/buildtools/jdk.vm.compiler.serviceprovider.processor.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/interim-image/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/demos/image/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/modules_libs/java.base/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/support/classlist.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/test/jdk/demos/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Stylepad/Stylepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/CodePointIM/CodePointIM.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TransparentRuler/TransparentRuler.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Font2DTest/Font2DTest.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/TableExample/TableExample.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/FileChooserDemo/FileChooserDemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SampleTree/SampleTree.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Metalworks/Metalworks.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/J2Ddemo/J2Ddemo.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/SwingSet2/SwingSet2.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/demo/jfc/Notepad/Notepad.jar:/root/jvm/openjdk11/jdk-11.0.17+8/build/linux-x86_64-normal-server-release/images/jdk/lib/jrt-fs.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/core/core.jar:/root/jvm/openjdk11/jdk-11.0.17+8/src/utils/IdealGraphVisualizer/branding/modules/org-netbeans-core-windows.jar test ——illegal-access=permit ```

Description

The issue was found to pertain to a type of problem associated with repeated invocations. However, it is unclear why the same command, when executed, would be processed differently on instances 11 and 17.

@AidPaike AidPaike added the bug label Apr 3, 2024
@oubidar-Abderrahim oubidar-Abderrahim self-assigned this Apr 3, 2024
@oubidar-Abderrahim
Copy link
Member

Hi, Thank you for reaching out, Could you please share more details on the situation.
Is there a difference between the output of OpenJ9-jdk11 and GraalVM jdk11? and between openJ9 jdk17 and GraalVM jdk17?
Also, please use the latest versions of GraalVM for reporting any issues.

@oubidar-Abderrahim
Copy link
Member

Any updates?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants