Skip to content

Commit 1e5ee0e

Browse files
authored
Disable running conditional breakpoint in file class for java 25 (#770)
Fixes : #695
1 parent 110b0ce commit 1e5ee0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/AutomatedSuite.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,9 @@ public AutomatedSuite() {
398398
addTest(new TestSuite(TestToggleBreakpointsTarget.class));
399399
addTest(new TestSuite(TriggerPointBreakpointsTests.class));
400400
addTest(new TestSuite(JavaThreadEventHandlerTests.class));
401-
addTest(new TestSuite(ConditionalBreakpointsWithFileClass.class));
401+
if (!JavaProjectHelper.isJava25_Compatible()) { // Disabling since consistent failure on Java 25
402+
addTest(new TestSuite(ConditionalBreakpointsWithFileClass.class));
403+
}
402404
addTest(new TestSuite(CompareObjectsTest.class));
403405
addTest(new TestSuite(DisableOnHitTest.class));
404406

0 commit comments

Comments
 (0)