8256736: Zero: GTest tests fail with "unsuppported vm variant"

Reviewed-by: dholmes
This commit is contained in:
Aleksey Shipilev 2020-11-24 06:49:55 +00:00
parent e838d71d61
commit b52f6c053b

View File

@ -118,8 +118,10 @@ public class GTestWrapper {
return "client";
} else if (Platform.isMinimal()) {
return "minimal";
} else if (Platform.isZero()) {
return "zero";
} else {
throw new Error("TESTBUG: unsuppported vm variant");
throw new Error("TESTBUG: unsupported vm variant");
}
}
}