Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2017-06-09 22:28:32 +0000
committerJonah Graham2017-06-22 15:35:13 +0000
commit195ae127766bcd5ef01c94be2f906692a2ca97b9 (patch)
tree137a0b5b7c7244c6751b7d67379c8d630038ea48 /dsf-gdb
parent8d26859710f820c3dbe4c2bd021a0ca8a3f96dae (diff)
downloadorg.eclipse.cdt-195ae127766bcd5ef01c94be2f906692a2ca97b9.tar.gz
org.eclipse.cdt-195ae127766bcd5ef01c94be2f906692a2ca97b9.tar.xz
org.eclipse.cdt-195ae127766bcd5ef01c94be2f906692a2ca97b9.zip
Bug 516102: Change DSF tests to run GDB 8.0 tests by default
Diffstat (limited to 'dsf-gdb')
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml2
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java2
2 files changed, 3 insertions, 1 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
index 864953dc122..5768c7cce95 100644
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml
@@ -19,7 +19,7 @@
<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.7.12</cdt.tests.dsf.gdb.versions>
+ <cdt.tests.dsf.gdb.versions>gdb.8.0</cdt.tests.dsf.gdb.versions>
<skipTests>${dsf-gdb.skip.tests}</skipTests>
</properties>
<build>
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java
index 243d313992d..2f8f9d476b6 100644
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java
@@ -30,9 +30,11 @@ public class ITestConstants {
public static final String SUFFIX_GDB_7_10 = "7.10";
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 String[] ALL_SUPPORTED_VERSIONS = new String[] {
// add new versions here
+ ITestConstants.SUFFIX_GDB_8_0,
ITestConstants.SUFFIX_GDB_7_12,
ITestConstants.SUFFIX_GDB_7_11,
ITestConstants.SUFFIX_GDB_7_10,

Back to the top