Skip to content

Commit

Permalink
8273803: Zero: Handle "zero" variant in CommandLineOptionTest.java
Browse files Browse the repository at this point in the history
Backport-of: 2d13fb21af783ebbe3dd5c2632aea11347317026
  • Loading branch information
Sonia Zaldana Calles authored and shipilev committed Aug 2, 2023
1 parent 820b076 commit d3948a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/lib/jdk/test/lib/cli/CommandLineOptionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,8 @@ private static String getVMTypeOption() {
return "-client";
} else if (Platform.isMinimal()) {
return "-minimal";
} else if (Platform.isZero()) {
return "-zero";
}
throw new RuntimeException("Unknown VM mode.");
}
Expand Down

0 comments on commit d3948a0

Please sign in to comment.