Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2018-09-05 11:11:59 +0000
committerJonah Graham2018-09-05 11:14:10 +0000
commit92bdc049a299b366e06c2fb722c89d76ffb1c37f (patch)
treebfa13e5f687a50d041c7a0454730b3d21a1fa186 /dsf-gdb
parent3679b7cd90f30acf4234e5c952530fdbef116acb (diff)
downloadorg.eclipse.cdt-92bdc049a299b366e06c2fb722c89d76ffb1c37f.tar.gz
org.eclipse.cdt-92bdc049a299b366e06c2fb722c89d76ffb1c37f.tar.xz
org.eclipse.cdt-92bdc049a299b366e06c2fb722c89d76ffb1c37f.zip
[releng] Update tests/build script to use newly released GDB 8.2
Diffstat (limited to 'dsf-gdb')
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml2
-rwxr-xr-xdsf-gdb/org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh2
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java2
3 files changed, 4 insertions, 2 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 2e28d0f8543..aba5a1fd24a 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.8.1</cdt.tests.dsf.gdb.versions>
+ <cdt.tests.dsf.gdb.versions>gdb.8.2</cdt.tests.dsf.gdb.versions>
<skipTests>${dsf-gdb.skip.tests}</skipTests>
</properties>
<build>
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh
index a087069c22e..14ebb918cab 100755
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh
@@ -30,7 +30,7 @@ default_jlevel="4"
jlevel="${default_jlevel}"
# Supported versions
-default_versions="8.1.1 8.0.1 7.12.1 7.11.1 7.10.1 7.9.1 7.8.2 7.7.1 7.6.2 7.5.1 7.4.1 7.3.1 7.2 7.1 7.0.1 6.8 6.7.1 6.6"
+default_versions="8.2 8.1.1 8.0.1 7.12.1 7.11.1 7.10.1 7.9.1 7.8.2 7.7.1 7.6.2 7.5.1 7.4.1 7.3.1 7.2 7.1 7.0.1 6.8 6.7.1 6.6"
# Is set to "echo" if we are doing a dry-run.
dryrun=""
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 b58d1a8a8ae..31298ede3cd 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
@@ -32,9 +32,11 @@ public class ITestConstants {
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 final String SUFFIX_GDB_8_2 = "8.2";
public static String[] ALL_SUPPORTED_VERSIONS = new String[] {
// add new versions here
+ ITestConstants.SUFFIX_GDB_8_2,
ITestConstants.SUFFIX_GDB_8_1,
ITestConstants.SUFFIX_GDB_8_0,
ITestConstants.SUFFIX_GDB_7_12,

Back to the top