We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a68b98 commit 1f4c7b1Copy full SHA for 1f4c7b1
test/jtreg-ext/requires/VMProps.java
@@ -238,6 +238,10 @@ protected String vmJvmci() {
238
return "false";
239
}
240
241
+ if (vmCompMode().equals("Xint")) {
242
+ return "false";
243
+ }
244
+
245
switch (GC.selected()) {
246
case Serial:
247
case Parallel:
@@ -374,6 +378,9 @@ protected String vmRTMCPU() {
374
378
* @return true if VM supports AOT and false otherwise
375
379
*/
376
380
protected String vmAOT() {
381
382
383
377
384
// builds with aot have jaotc in <JDK>/bin
385
Path bin = Paths.get(System.getProperty("java.home"))
386
.resolve("bin");
0 commit comments