Skip to content

Commit ee060c7

Browse files
committedAug 10, 2020
8241951: SA core file tests failed to find core file for signed binaries on OSX 10.15
Reviewed-by: amenkov, dcubed
1 parent 6df465d commit ee060c7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎test/lib/jdk/test/lib/util/CoreUtils.java

+8
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,14 @@ public static String getCoreFileLocation(String crashOutputString) throws IOExce
135135
if (!coresDir.canWrite()) {
136136
throw new SkippedException("Directory \"" + coresDir + "\" is not writable");
137137
}
138+
if (Platform.isSignedOSX()) {
139+
if (Platform.getOsVersionMajor() > 10 ||
140+
(Platform.getOsVersionMajor() == 10 && Platform.getOsVersionMinor() >= 15))
141+
{
142+
// We can't generate cores files with signed binaries on OSX 10.15 and later.
143+
throw new SkippedException("Cannot produce core file with signed binary on OSX 10.15 and later");
144+
}
145+
}
138146
} else if (Platform.isLinux()) {
139147
// Check if a crash report tool is installed.
140148
File corePatternFile = new File(CORE_PATTERN_FILE_NAME);

0 commit comments

Comments
 (0)
Please sign in to comment.