1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Bug 444317 - Move JUnit tests to use GDB 7.8

Change-Id: I129d6922fb93044cf12c912536b193140eae8f94
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/33481
Tested-by: Hudson CI
Reviewed-by: Alvaro Sanchez-Leon <alvsan09@gmail.com>
This commit is contained in:
Marc Khouzam 2014-09-16 22:11:59 -04:00
parent ddd0df6db8
commit c5d3f2247d
3 changed files with 6 additions and 2 deletions

View file

@ -16,6 +16,7 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_4.Suite_7_4;
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.junit.runner.RunWith;
import org.junit.runners.Suite;
@ -30,6 +31,7 @@ import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
Suite_7_8.class,
Suite_7_7.class,
Suite_7_6.class,
Suite_7_5.class,

View file

@ -21,6 +21,7 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_4.Suite_Remote_7_4;
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.junit.runner.RunWith;
import org.junit.runners.Suite;
@ -35,6 +36,7 @@ import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
Suite_Remote_7_8.class,
Suite_Remote_7_7.class,
Suite_Remote_7_6.class,
Suite_Remote_7_5.class,

View file

@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.cdt.tests.dsf.gdb.tests;
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.junit.runner.RunWith;
import org.junit.runners.Suite;
@ -21,7 +21,7 @@ import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
Suite_7_7.class,
Suite_7_8.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)