Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2012-05-22 16:37:33 +0000
committerMarc Khouzam2012-05-22 16:42:58 +0000
commita686aafa3c159aa926bfd261c8d18ff763a026b8 (patch)
tree738d649e807d6394a5b50c5a8c7595769d060280 /dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java
parentc22a911b80bdab17fec90cd024cafdc868a1730c (diff)
downloadorg.eclipse.cdt-a686aafa3c159aa926bfd261c8d18ff763a026b8.tar.gz
org.eclipse.cdt-a686aafa3c159aa926bfd261c8d18ff763a026b8.tar.xz
org.eclipse.cdt-a686aafa3c159aa926bfd261c8d18ff763a026b8.zip
Bug 378834: Add Debug JUnit tests to Hudson at eclipse.org
Change-Id: Ifce9db09c43de933bee93af4a6e817d6cca7d1de Reviewed-on: https://git.eclipse.org/r/6018 Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com> IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com> Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java')
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java30
1 files changed, 30 insertions, 0 deletions
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
new file mode 100644
index 00000000000..b1dd875c211
--- /dev/null
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/AutomatedSuite.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Marc Khouzam (Ericsson) - Initial Implementation
+ *******************************************************************************/
+package org.eclipse.cdt.tests.dsf.gdb.tests;
+
+import org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_4.Suite_7_4;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * This suite runs all suites that are part of the tests
+ * automatically run with each CDT build.
+ */
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+ Suite_7_4.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)
+})
+
+public class AutomatedSuite {} \ No newline at end of file

Back to the top