File tree 1 file changed +14
-2
lines changed
test/hotspot/jtreg/serviceability/sa
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,20 @@ public static void main(String[] args) throws Exception {
111
111
if (coreFileLocation == null ) {
112
112
if (Platform .isOSX ()) {
113
113
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
+ }
116
128
}
117
129
} else if (Platform .isLinux ()) {
118
130
// Check if a crash report tool is installed.
You can’t perform that action at this time.
0 commit comments