Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-12-06 21:51:02 +0000
committerspingel2008-12-06 21:51:02 +0000
commit93526ea4c7553e1860d4ee23f7b809545535b7f0 (patch)
tree2f4a60e88a37eef975f53185baa05e5fcf091ae8
parent7f60d307bad275538fed497f5fd1ee0575384535 (diff)
downloadorg.eclipse.mylyn-93526ea4c7553e1860d4ee23f7b809545535b7f0.tar.gz
org.eclipse.mylyn-93526ea4c7553e1860d4ee23f7b809545535b7f0.tar.xz
org.eclipse.mylyn-93526ea4c7553e1860d4ee23f7b809545535b7f0.zip
RESOLVED - bug 248310: [releng] use continuous integration to run builds and tests
https://bugs.eclipse.org/bugs/show_bug.cgi?id=248310
-rw-r--r--org.eclipse.mylyn.releng/build.xml5
-rw-r--r--org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllHeadlessStandaloneTests.java (renamed from org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllStandaloneTests.java)2
2 files changed, 2 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.releng/build.xml b/org.eclipse.mylyn.releng/build.xml
index 0caebfd8..93740b72 100644
--- a/org.eclipse.mylyn.releng/build.xml
+++ b/org.eclipse.mylyn.releng/build.xml
@@ -5,7 +5,7 @@
<import file="scripts/buildHelper.xml" />
- <target name="all" depends="clean,build,tests,performance-tests">
+ <target name="all" depends="clean,build,standalone-tests,tests,performance-tests">
</target>
<target name="build" depends="init-build,init">
@@ -22,9 +22,6 @@
</antcall>
</target>
- <target name="tests" depends="standalone-tests,eclipse-tests,performance-tests">
- </target>
-
<target name="standalone-tests" depends="init">
<antcall target="for-each-target">
<param name="call" value="standalone-tests-helper"/>
diff --git a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllStandaloneTests.java b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllHeadlessStandaloneTests.java
index 076c454f..44b82bef 100644
--- a/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllStandaloneTests.java
+++ b/org.eclipse.mylyn.tests/src/org/eclipse/mylyn/tests/AllHeadlessStandaloneTests.java
@@ -21,7 +21,7 @@ import org.eclipse.mylyn.tasks.tests.TasksUtilTest;
/**
* @author Mik Kersten
*/
-public class AllStandaloneTests {
+public class AllHeadlessStandaloneTests {
public static Test suite() {
TestSuite suite = new TestSuite("Tests not requiring Eclipse Workbench");

Back to the top