From 9c05b3506a86f6525d6fa34f0dfea950da34f568 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 20 Feb 2015 16:01:33 -0500 Subject: [PATCH] Add test suite for GDB 7.9 and move Automated Suite to use GDB 7.9 Signed-off-by: Marc Khouzam --- .../src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuites.java | 4 +++- .../eclipse/cdt/tests/dsf/gdb/tests/AllSuitesRemote.java | 4 +++- .../org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuites.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuites.java index 9d11ea02bfc..4846cec7908 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuites.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuites.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2014 Ericsson and others. + * Copyright (c) 2009, 2015 Ericsson and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -18,6 +18,7 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_5.Suite_7_5; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_6.Suite_7_6; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_7.Suite_7_7; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_8.Suite_7_8; +import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_9.Suite_7_9; import org.junit.runner.RunWith; import org.junit.runners.Suite; @@ -32,6 +33,7 @@ import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ + Suite_7_9.class, Suite_7_8.class, Suite_7_7.class, Suite_7_6.class, diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuitesRemote.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuitesRemote.java index ce5d0901898..a007a62b6bc 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuitesRemote.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AllSuitesRemote.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2014 Ericsson and others. + * Copyright (c) 2009, 2015 Ericsson and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -18,6 +18,7 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_5.Suite_Remote_7_5; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_6.Suite_Remote_7_6; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_7.Suite_Remote_7_7; import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_8.Suite_Remote_7_8; +import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_9.Suite_Remote_7_9; import org.junit.runner.RunWith; import org.junit.runners.Suite; @@ -32,6 +33,7 @@ import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ + Suite_Remote_7_9.class, Suite_Remote_7_8.class, Suite_Remote_7_7.class, Suite_Remote_7_6.class, diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java index f3b20dabc82..7eda5846b7f 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012, 2014 Ericsson and others. + * Copyright (c) 2012, 2015 Ericsson and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -10,7 +10,7 @@ *******************************************************************************/ package org.eclipse.cdt.tests.dsf.gdb.tests; -import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_8.Suite_7_8; +import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_9.Suite_7_9; import org.junit.runner.RunWith; import org.junit.runners.Suite; @@ -21,7 +21,7 @@ import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ - Suite_7_8.class, + Suite_7_9.class, // Can't run the Remote test just yet because they // have the same names on the local tests, which is // not handled by JUnit (https://bugs.eclipse.org/172256)