Skip to content

Commit d0f338d

Browse files
authored
Merge pull request ibmruntimes#860 from keithc-ca/container
Rename jtreg property docker.support as container.support
2 parents ea882cc + f7e8a2c commit d0f338d

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

closed/test/jtreg-ext/requires/OpenJ9PropsExt.java

+7-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*
22
* ===========================================================================
3-
* (c) Copyright IBM Corp. 2019, 2023 All Rights Reserved
3+
* (c) Copyright IBM Corp. 2019, 2024 All Rights Reserved
44
* ===========================================================================
5-
*
5+
*
66
* This code is free software; you can redistribute it and/or modify it
77
* under the terms of the GNU General Public License version 2 only, as
8-
* published by the Free Software Foundation.
8+
* published by the Free Software Foundation.
99
*
10-
* IBM designates this particular file as subject to the "Classpath" exception
10+
* IBM designates this particular file as subject to the "Classpath" exception
1111
* as provided by IBM in the LICENSE file that accompanied this code.
1212
*
1313
* This code is distributed in the hope that it will be useful, but WITHOUT
@@ -18,10 +18,8 @@
1818
*
1919
* You should have received a copy of the GNU General Public License version
2020
* 2 along with this work; if not, see <http://www.gnu.org/licenses/>.
21-
*
2221
* ===========================================================================
2322
*/
24-
2523
package requires;
2624

2725
import java.util.HashMap;
@@ -33,10 +31,9 @@ public class OpenJ9PropsExt implements Callable<Map<String, String>> {
3331

3432
@Override
3533
public Map<String, String> call() {
36-
3734
Map<String, String> map = new HashMap<>();
3835
try {
39-
map.put("docker.support", "true");
36+
map.put("container.support", "true");
4037
map.put("vm.bits", vmBits());
4138
map.put("vm.cds", "false");
4239
map.put("vm.cds.write.archived.java.heap", "false");
@@ -58,11 +55,10 @@ public Map<String, String> call() {
5855
map.put("vm.openj9", "true");
5956
map.put("vm.opt.final.ClassUnloading", "true");
6057
map.put("vm.opt.final.ZGenerational", "false");
61-
}
62-
catch (Exception e) {
58+
} catch (Exception e) {
6359
e.printStackTrace();
6460
System.exit(1);
65-
}
61+
}
6662
return map;
6763
}
6864

0 commit comments

Comments
 (0)