From 92bdc049a299b366e06c2fb722c89d76ffb1c37f Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Wed, 5 Sep 2018 12:11:59 +0100 Subject: [PATCH] [releng] Update tests/build script to use newly released GDB 8.2 Change-Id: I6f67200880b9d9ed96f4cf0555d92312d1f64fff --- dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml | 2 +- .../org.eclipse.cdt.tests.dsf.gdb/scripts/download-build-gdb.sh | 2 +- .../src/org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java | 2 ++ 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 @@ /shared/common/gdb/gdb-all/bin AutomatedSuite.java 1 - gdb.8.1 + gdb.8.2 ${dsf-gdb.skip.tests} 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,