-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
8
-
x86_64
-
os_x
The runtime/ErrorHandling/ErrorFileRedirectTest test on x64 MacOS with JDK 8 is failing. The error is seemingly caused by this (1) test code which expects this (2) bad pointer dereference line to crash (a comment acknowledges that this isn't guaranteed, and is not happening with MacOS).
(1) https://github.com/openjdk/jdk8u-dev/blob/5a4b44089f3f95b92620ef3a7b49f2390b70afaa/hotspot/test/runtime/ErrorHandling/ErrorFileRedirectTest.java#L48-L55
(2) https://github.com/openjdk/jdk8u-dev/blob/5a4b44089f3f95b92620ef3a7b49f2390b70afaa/hotspot/src/share/vm/utilities/debug.cpp#L378
For context, we're seeing the below error message:
```
stdout: [ERROR: 12: unexpected test_num value.
# To suppress the following error report, specify this argument
# after -XX: or in .hotspotrc: SuppressErrorAt=/debug.cpp:385
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (.../jdk8u-dev/hotspot/src/share/vm/utilities/debug.cpp:385), pid=85419, tid=0x0000000000001503
# Error: ShouldNotReachHere()
#
# JRE version: OpenJDK Runtime Environment (8.0_452) (build 1.8.0_452-internal-fastdebug-ec2user_2024_12_21_00_42-b00)
# Java VM: OpenJDK 64-Bit Server VM (25.452-b00-fastdebug mixed mode bsd-amd64 compressed oops)
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# .../jdk8u-dev/build/macosx-x86_64-normal-server-fastdebug/testoutput/hotspot_tier1/JTwork/scratch/0/hs_err_pid85419.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
Current thread is 5379
Dumping core ...
];
stderr: []
exitValue = 134
java.lang.RuntimeException: '# +(?:SIGSEGV|EXCEPTION_ACCESS_VIOLATION).*' missing from stdout/stderr
at com.oracle.java.testlibrary.OutputAnalyzer.shouldMatch(OutputAnalyzer.java:225)
at ErrorFileRedirectTest.do_test(ErrorFileRedirectTest.java:59)
at ErrorFileRedirectTest.main(ErrorFileRedirectTest.java:97)
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.MainActionHelper$AgentVMRunnable.run(MainActionHelper.java:298)
at java.lang.Thread.run(Thread.java:750)
JavaTest Message: Test threw exception: java.lang.RuntimeException
JavaTest Message: shutting down test
```
(1) https://github.com/openjdk/jdk8u-dev/blob/5a4b44089f3f95b92620ef3a7b49f2390b70afaa/hotspot/test/runtime/ErrorHandling/ErrorFileRedirectTest.java#L48-L55
(2) https://github.com/openjdk/jdk8u-dev/blob/5a4b44089f3f95b92620ef3a7b49f2390b70afaa/hotspot/src/share/vm/utilities/debug.cpp#L378
For context, we're seeing the below error message:
```
stdout: [ERROR: 12: unexpected test_num value.
# To suppress the following error report, specify this argument
# after -XX: or in .hotspotrc: SuppressErrorAt=/debug.cpp:385
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (.../jdk8u-dev/hotspot/src/share/vm/utilities/debug.cpp:385), pid=85419, tid=0x0000000000001503
# Error: ShouldNotReachHere()
#
# JRE version: OpenJDK Runtime Environment (8.0_452) (build 1.8.0_452-internal-fastdebug-ec2user_2024_12_21_00_42-b00)
# Java VM: OpenJDK 64-Bit Server VM (25.452-b00-fastdebug mixed mode bsd-amd64 compressed oops)
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# .../jdk8u-dev/build/macosx-x86_64-normal-server-fastdebug/testoutput/hotspot_tier1/JTwork/scratch/0/hs_err_pid85419.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
Current thread is 5379
Dumping core ...
];
stderr: []
exitValue = 134
java.lang.RuntimeException: '# +(?:SIGSEGV|EXCEPTION_ACCESS_VIOLATION).*' missing from stdout/stderr
at com.oracle.java.testlibrary.OutputAnalyzer.shouldMatch(OutputAnalyzer.java:225)
at ErrorFileRedirectTest.do_test(ErrorFileRedirectTest.java:59)
at ErrorFileRedirectTest.main(ErrorFileRedirectTest.java:97)
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.MainActionHelper$AgentVMRunnable.run(MainActionHelper.java:298)
at java.lang.Thread.run(Thread.java:750)
JavaTest Message: Test threw exception: java.lang.RuntimeException
JavaTest Message: shutting down test
```