From b4ac2d3ebfa4090e845dd8cedf5531da2c6e9e80 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Sun, 11 Mar 2018 18:02:19 +0000 Subject: [PATCH] [releng] bump version of gdb to test with to gdb 8.1 Change-Id: I811bc22a02ff84cc638872b21c71345e10d288ab --- dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml | 4 ++-- .../org/eclipse/cdt/tests/dsf/gdb/tests/ITestConstants.java | 2 ++ 2 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 5038bba917d..9ea98bd0ade 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/pom.xml @@ -14,12 +14,12 @@ 2.2.0-SNAPSHOT org.eclipse.cdt.tests.dsf.gdb eclipse-test-plugin - + /shared/common/gdb/gdb-all/bin AutomatedSuite.java 1 - gdb.8.0 + gdb.8.1 ${dsf-gdb.skip.tests} 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 2f8f9d476b6..b58d1a8a8ae 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 @@ -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,