Skip to content

Commit 79648fa

Browse files
authored
Disable kotlin tests for IBM8 (#7762)
1 parent e8e0980 commit 79648fa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dd-java-agent/agent-debugger/src/test/java/com/datadog/debugger/agent/CapturedSnapshotTest.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,9 @@ public void sourceFileProbeGroovy() throws IOException, URISyntaxException {
583583
}
584584

585585
@Test
586+
@DisabledIf(
587+
value = "datadog.trace.api.Platform#isJ9",
588+
disabledReason = "Issue with J9 when compiling Kotlin code")
586589
public void sourceFileProbeKotlin() {
587590
final String CLASS_NAME = "CapturedSnapshot301";
588591
TestSnapshotListener listener =
@@ -609,6 +612,9 @@ public void sourceFileProbeKotlin() {
609612
}
610613

611614
@Test
615+
@DisabledIf(
616+
value = "datadog.trace.api.Platform#isJ9",
617+
disabledReason = "Issue with J9 when compiling Kotlin code")
612618
public void suspendKotlin() {
613619
final String CLASS_NAME = "CapturedSnapshot302";
614620
TestSnapshotListener listener =
@@ -632,6 +638,9 @@ public void suspendKotlin() {
632638
}
633639

634640
@Test
641+
@DisabledIf(
642+
value = "datadog.trace.api.Platform#isJ9",
643+
disabledReason = "Issue with J9 when compiling Kotlin code")
635644
public void hoistVarKotlin() {
636645
final String CLASS_NAME = "CapturedSnapshot303";
637646
TestSnapshotListener listener =

0 commit comments

Comments
 (0)