Skip to content

Commit

Permalink
Fix test coverage on Java 16
Browse files Browse the repository at this point in the history
  • Loading branch information
davido committed Apr 15, 2021
1 parent cb6f6a6 commit 8487566
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/test/shell/bazel/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,6 @@ sh_test(

JAVA_VERSIONS = ("11", "15", "16")

# TODO(davido): Enable test coverage for JDK 16 toolchain when this issue is fixed:
# https://github.com/bazelbuild/bazel/issues/13358
JAVA_VERSIONS_COVERAGE = ("11", "15")

[
sh_test(
name = "bazel_java_test_jdk" + java_version + "_toolchain_head",
Expand Down Expand Up @@ -506,7 +502,7 @@ sh_test(
"no_windows",
],
)
for java_version in JAVA_VERSIONS_COVERAGE
for java_version in JAVA_VERSIONS
]

# Test java coverage with the java_toolchain in the java_tools zip built at head.
Expand All @@ -532,7 +528,7 @@ sh_test(
],
tags = ["no_windows"],
)
for java_version in JAVA_VERSIONS_COVERAGE
for java_version in JAVA_VERSIONS
]

sh_test(
Expand Down

0 comments on commit 8487566

Please sign in to comment.