Skip to content

Commit

Permalink
Disable kotlin tests for IBM8
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbempel committed Oct 14, 2024
1 parent e10da91 commit 4b91382
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,9 @@ public void sourceFileProbeGroovy() throws IOException, URISyntaxException {
}

@Test
@DisabledIf(
value = "datadog.trace.api.Platform#isJ9",
disabledReason = "Issue with J9 when compiling Kotlin code")
public void sourceFileProbeKotlin() {
final String CLASS_NAME = "CapturedSnapshot301";
TestSnapshotListener listener =
Expand All @@ -609,6 +612,9 @@ public void sourceFileProbeKotlin() {
}

@Test
@DisabledIf(
value = "datadog.trace.api.Platform#isJ9",
disabledReason = "Issue with J9 when compiling Kotlin code")
public void suspendKotlin() {
final String CLASS_NAME = "CapturedSnapshot302";
TestSnapshotListener listener =
Expand All @@ -632,6 +638,9 @@ public void suspendKotlin() {
}

@Test
@DisabledIf(
value = "datadog.trace.api.Platform#isJ9",
disabledReason = "Issue with J9 when compiling Kotlin code")
public void hoistVarKotlin() {
final String CLASS_NAME = "CapturedSnapshot303";
TestSnapshotListener listener =
Expand Down

0 comments on commit 4b91382

Please sign in to comment.