Skip to content

Commit

Permalink
Merge pull request #43673 from zakkak/2024-10-03-disable-more-tests
Browse files Browse the repository at this point in the history
Disable more tests in locales/some with GraalVM >= 24.2
  • Loading branch information
gsmet authored Oct 3, 2024
2 parents ecb07dd + caf9e0a commit aa37d5d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ public void testCorrectLocales(String country, String language, String translati
.log().all();
}

// Disable test with GraalVM 24.2 for JDK 24 and later till we reach a conclusion in
// https://github.com/quarkusio/quarkus/discussions/43533
@DisableIfBuiltWithGraalVMNewerThan(value = GraalVMVersion.GRAALVM_24_1_0)
@ParameterizedTest
@CsvSource(value = {
"en-US|en|US Dollar",
Expand All @@ -62,6 +65,9 @@ public void testCurrencies(String country, String language, String currency) {
.log().all();
}

// Disable test with GraalVM 24.2 for JDK 24 and later till we reach a conclusion in
// https://github.com/quarkusio/quarkus/discussions/43533
@DisableIfBuiltWithGraalVMNewerThan(value = GraalVMVersion.GRAALVM_24_1_0)
@ParameterizedTest
@CsvSource(value = {
"Asia/Tokyo|fr|heure normale du Japon",
Expand Down

0 comments on commit aa37d5d

Please sign in to comment.