File tree 1 file changed +8
-0
lines changed
test/lib/jdk/test/lib/util
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,14 @@ public static String getCoreFileLocation(String crashOutputString) throws IOExce
135
135
if (!coresDir .canWrite ()) {
136
136
throw new SkippedException ("Directory \" " + coresDir + "\" is not writable" );
137
137
}
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
+ }
138
146
} else if (Platform .isLinux ()) {
139
147
// Check if a crash report tool is installed.
140
148
File corePatternFile = new File (CORE_PATTERN_FILE_NAME );
You can’t perform that action at this time.
0 commit comments