1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 06:32:10 +02:00

Bug 512303 - [tests] job debug-tests-master-all-gdb-versions has issues

Disabling test suites MIExpressionsTest and StepIntoSelectionTest for
GDB < 7.5. 

Change-Id: I93b7739fc8c93a90f205122f6332754e99f739ca
This commit is contained in:
Marc Dumais 2017-02-16 13:37:16 -05:00
parent 40416c3da4
commit ad845e6c3a
2 changed files with 10 additions and 0 deletions

View file

@ -93,6 +93,11 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
public void doBeforeTest() throws Exception { public void doBeforeTest() throws Exception {
super.doBeforeTest(); super.doBeforeTest();
// Disabling this suite for GDB < 7.5. There are issues when the test
// binaries are compiled with gcc > 4.8, which uses DWARF version 4.
// see bug 512303
assumeGdbVersionAtLeast(ITestConstants.SUFFIX_GDB_7_5);
fSession = getGDBLaunch().getSession(); fSession = getGDBLaunch().getSession();
Runnable runnable = new Runnable() { Runnable runnable = new Runnable() {
@Override @Override

View file

@ -109,6 +109,11 @@ public class StepIntoSelectionTest extends BaseParametrizedTestCase {
public void doBeforeTest() throws Exception { public void doBeforeTest() throws Exception {
super.doBeforeTest(); super.doBeforeTest();
// Disabling this suite for GDB < 7.5. There are issues when the test
// binaries are compiled with gcc > 4.8, which uses DWARF version 4.
// see bug 512303
assumeGdbVersionAtLeast(ITestConstants.SUFFIX_GDB_7_5);
Runnable runnable = new Runnable() { Runnable runnable = new Runnable() {
@Override @Override
public void run() { public void run() {