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

[releng] bump version of gdb to test with to gdb 8.1

Change-Id: I811bc22a02ff84cc638872b21c71345e10d288ab
This commit is contained in:
Jonah Graham 2018-03-11 18:02:19 +00:00
parent ebf123102f
commit b4ac2d3ebf
2 changed files with 4 additions and 2 deletions

View file

@ -14,12 +14,12 @@
<version>2.2.0-SNAPSHOT</version>
<artifactId>org.eclipse.cdt.tests.dsf.gdb</artifactId>
<packaging>eclipse-test-plugin</packaging>
<properties>
<dsf.gdb.tests.gdbPath>/shared/common/gdb/gdb-all/bin</dsf.gdb.tests.gdbPath>
<dsf.gdb.tests.gdbTestSuite>AutomatedSuite.java</dsf.gdb.tests.gdbTestSuite>
<dsf.gdb.tests.timeout.multiplier>1</dsf.gdb.tests.timeout.multiplier>
<cdt.tests.dsf.gdb.versions>gdb.8.0</cdt.tests.dsf.gdb.versions>
<cdt.tests.dsf.gdb.versions>gdb.8.1</cdt.tests.dsf.gdb.versions>
<skipTests>${dsf-gdb.skip.tests}</skipTests>
</properties>
<build>

View file

@ -31,9 +31,11 @@ public class ITestConstants {
public static final String SUFFIX_GDB_7_11 = "7.11";
public static final String SUFFIX_GDB_7_12 = "7.12";
public static final String SUFFIX_GDB_8_0 = "8.0";
public static final String SUFFIX_GDB_8_1 = "8.1";
public static String[] ALL_SUPPORTED_VERSIONS = new String[] {
// add new versions here
ITestConstants.SUFFIX_GDB_8_1,
ITestConstants.SUFFIX_GDB_8_0,
ITestConstants.SUFFIX_GDB_7_12,
ITestConstants.SUFFIX_GDB_7_11,