-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
20
This test is failing in GHA on linux-x86 with:
java.lang.IllegalStateException: Launching JShell execution engine threw: FailOverExecutionControlProvider: FAILED: 0:jdi:hostname(127.0.0.1) --
Exception: java.lang.IllegalArgumentException: ERROR: JDWP unable to access JVMTI Version 1 (0x30010000), is your J2SE a 1.5 or newer version? JNIEnv's GetEnv() returned -3
The issue here is that there is no JVMTI support on x86_32 when running with --enable-preview. The VM continuations support to 32-bit is not there yet. Adding `@requires vm.continuations` to the test description, like ToolEnablePreviewTest.java, will ensure this test is not selected on this configuration.
java.lang.IllegalStateException: Launching JShell execution engine threw: FailOverExecutionControlProvider: FAILED: 0:jdi:hostname(127.0.0.1) --
Exception: java.lang.IllegalArgumentException: ERROR: JDWP unable to access JVMTI Version 1 (0x30010000), is your J2SE a 1.5 or newer version? JNIEnv's GetEnv() returned -3
The issue here is that there is no JVMTI support on x86_32 when running with --enable-preview. The VM continuations support to 32-bit is not there yet. Adding `@requires vm.continuations` to the test description, like ToolEnablePreviewTest.java, will ensure this test is not selected on this configuration.
- duplicates
-
JDK-8297821 jdk/jshell/Test8294583.java fails on some platforms
-
- Resolved
-