Skip to content

Commit

Permalink
Disable more tests in locales/some with GraalVM >= 24.2
Browse files Browse the repository at this point in the history
Disables:
* testCurrencies
* testTimeZones

Follow up to #43604
  • Loading branch information
zakkak committed Oct 3, 2024
1 parent e2c1d31 commit caf9e0a
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 caf9e0a

Please sign in to comment.