1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 379724: [tests] RTTI test crashes GDB 6.7

Change-Id: I8ac36087ff874dfd294e1187efc2ba01a8cf5b41
Reviewed-on: https://git.eclipse.org/r/6016
Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com>
IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com>
Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2012-05-17 13:54:17 -04:00
parent 8bb266decf
commit 6d3706eaf2
2 changed files with 16 additions and 0 deletions

View file

@ -13,6 +13,7 @@ package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_7;
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
import org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_6.MIExpressionsTest_6_6;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
@ -36,4 +37,13 @@ public class MIExpressionsTest_6_7 extends MIExpressionsTest_6_6 {
public void testDeleteChildren() throws Throwable {
super.testDeleteChildren();
}
@Override
@Ignore("Causes a crash in GDB 6.7 only")
@Test
public void testRTTI() throws Throwable {
// Must call the test in the super class to allow further derived
// classes to run this test.
super.testRTTI();
}
}

View file

@ -30,4 +30,10 @@ public class MIExpressionsTest_6_8 extends MIExpressionsTest_6_7 {
super.testCanWriteLValue();
}
// Re-enable this test starting with GDB 6.8
@Override
@Test
public void testRTTI() throws Throwable {
super.testRTTI();
}
}