Skip to content

Commit

Permalink
Avoid bundled jdk test on legacy platforms
Browse files Browse the repository at this point in the history
This commit skips a test of bundled jdk behavior on legacy platforms
that can't run the bundled jdk.
  • Loading branch information
rjernst committed Sep 24, 2020
1 parent f4c371f commit 57c8a2f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public void test20PluginsListWithNoPlugins() throws Exception {
}

public void test30MissingBundledJdk() throws Exception {
assumeTrue(Platforms.IS_BUNDLED_JDK_SUPPORTED);
final Installation.Executables bin = installation.executables();
sh.getEnv().remove("JAVA_HOME");

Expand Down

0 comments on commit 57c8a2f

Please sign in to comment.