Skip to content

Commit 1f4c7b1

Browse files
committedSep 29, 2020
Updated VPProps to don't run Graal/AOT tests in Xint mode.
1 parent 0a68b98 commit 1f4c7b1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎test/jtreg-ext/requires/VMProps.java

+7
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,10 @@ protected String vmJvmci() {
238238
return "false";
239239
}
240240

241+
if (vmCompMode().equals("Xint")) {
242+
return "false";
243+
}
244+
241245
switch (GC.selected()) {
242246
case Serial:
243247
case Parallel:
@@ -374,6 +378,9 @@ protected String vmRTMCPU() {
374378
* @return true if VM supports AOT and false otherwise
375379
*/
376380
protected String vmAOT() {
381+
if (vmCompMode().equals("Xint")) {
382+
return "false";
383+
}
377384
// builds with aot have jaotc in <JDK>/bin
378385
Path bin = Paths.get(System.getProperty("java.home"))
379386
.resolve("bin");

0 commit comments

Comments
 (0)
Please sign in to comment.