Skip to content

Commit 02f2c5f

Browse files
committedNov 28, 2019
8234625: hs test serviceability/sa/ClhsdbCDSCore.java fails on macOS 10.15
Reviewed-by: clanger, iignatyev
1 parent b03ba9e commit 02f2c5f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed
 

‎test/hotspot/jtreg/serviceability/sa/ClhsdbCDSCore.java

+14-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,20 @@ public static void main(String[] args) throws Exception {
111111
if (coreFileLocation == null) {
112112
if (Platform.isOSX()) {
113113
File coresDir = new File("/cores");
114-
if (!coresDir.isDirectory() || !coresDir.canWrite()) {
115-
throw new Error("cores is not a directory or does not have write permissions");
114+
if (!coresDir.isDirectory()) {
115+
throw new Error("cores is not a directory");
116+
}
117+
// the /cores directory is usually not writable on macOS 10.15
118+
final String osVersion = System.getProperty("os.version");
119+
if (osVersion == null) {
120+
throw new Error("Cannot query the 'os.version' property!");
121+
}
122+
if (!coresDir.canWrite()) {
123+
if (osVersion.startsWith("10.15")) {
124+
throw new SkippedException("/cores is not writable");
125+
} else {
126+
throw new Error("cores does not have write permissions");
127+
}
116128
}
117129
} else if (Platform.isLinux()) {
118130
// Check if a crash report tool is installed.

0 commit comments

Comments
 (0)
Please sign in to comment.