Skip to content

Commit b52f6c0

Browse files
committed
8256736: Zero: GTest tests fail with "unsuppported vm variant"
Reviewed-by: dholmes
1 parent e838d71 commit b52f6c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/hotspot/jtreg/gtest/GTestWrapper.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ private static String getJVMVariantSubDir() {
118118
return "client";
119119
} else if (Platform.isMinimal()) {
120120
return "minimal";
121+
} else if (Platform.isZero()) {
122+
return "zero";
121123
} else {
122-
throw new Error("TESTBUG: unsuppported vm variant");
124+
throw new Error("TESTBUG: unsupported vm variant");
123125
}
124126
}
125127
}

0 commit comments

Comments
 (0)