Skip to content

Commit

Permalink
Fix smoke-tests on linux-riscv64 for jdk11u (#3686)
Browse files Browse the repository at this point in the history
  • Loading branch information
luhenry authored Mar 5, 2024
1 parent f79673b commit e282be5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ public void testShenandoahAvailable() {
if (jdkVersion.isNewerOrEqual(17) && jdkPlatform.runsOn(OperatingSystem.LINUX, Architecture.PPC64LE)) {
shouldBePresent = true;
}
if (jdkVersion.isNewerOrEqual(19) || jdkVersion.isNewerOrEqualSameFeature(17, 0, 9)) {
if (jdkVersion.isNewerOrEqual(19)
|| jdkVersion.isNewerOrEqualSameFeature(17, 0, 9)
|| jdkVersion.isNewerOrEqualSameFeature(11, 0, 23)) {
if (jdkPlatform.runsOn(OperatingSystem.LINUX, Architecture.RISCV64)) {
shouldBePresent = true;
}
Expand Down

0 comments on commit e282be5

Please sign in to comment.