/** Value of {@code java.vm.info} (interpreted|mixed|comp mode) */
protected static final String MODE = System.getProperty("java.vm.info");
For example, class data sharing can add additional output to java.vm.info:
mixed mode, sharing
This will break tests that use CompilerWhiteBoxTest.MODE.
protected static final String MODE = System.getProperty("java.vm.info");
For example, class data sharing can add additional output to java.vm.info:
mixed mode, sharing
This will break tests that use CompilerWhiteBoxTest.MODE.
- duplicates
-
JDK-8151280 Update HotSpot tests to use vm.compMode instead of their own logic
-
- Resolved
-