--- a/test/jtreg-ext/requires/VMProps.java Tue Oct 01 14:51:04 2019 +0200
+++ b/test/jtreg-ext/requires/VMProps.java Tue Oct 01 15:38:26 2019 +0200
@@ -235,7 +235,22 @@
*/
protected String vmJvmci() {
// builds with jvmci have this flag
- return "" + (WB.getBooleanVMFlag("EnableJVMCI") != null);
+ if (WB.getBooleanVMFlag("EnableJVMCI") == null) {
+ return "false";
+ }
+
+ switch (GC.selected()) {
+ case Serial:
+ case Parallel:
+ case G1:
+ // These GCs are supported with JVMCI
+ return "true";
+ default:
+ break;
+ }
+
+ // Every other GC is not supported
+ return "false";
}
/**
@@ -356,7 +371,24 @@
} else {
jaotc = bin.resolve("jaotc");
}
- return "" + Files.exists(jaotc);
+
+ if (!Files.exists(jaotc)) {
+ // No jaotc => no AOT
+ return "false";
+ }
+
+ switch (GC.selected()) {
+ case Serial:
+ case Parallel:
+ case G1:
+ // These GCs are supported with AOT
+ return "true";
+ default:
+ break;
+ }
+
+ // Every other GC is not supported
+ return "false";
}
/*