1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-11 10:15:39 +02:00

Bug 317223: Disable two tests for GDB 6.6 since they depend on -var-info-path-expression, which is only supported starting with GDB 6.7

This commit is contained in:
Marc Khouzam 2010-06-17 17:42:56 +00:00
parent 64bf10ce46
commit b1aa24fe34

View file

@ -30,4 +30,16 @@ public class MIExpressionsTest_6_6 extends MIExpressionsTest {
@Test @Test
public void testCanWriteLValue() throws Throwable { public void testCanWriteLValue() throws Throwable {
} }
@Override
@Ignore("Only works in versions later than GDB6.6")
@Test
public void testChildren() throws Throwable {
}
@Override
@Ignore("Only works in versions later than GDB6.6")
@Test
public void testDeleteChildren() throws Throwable {
}
} }