Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.ui.editors.tests/test.xml19
-rw-r--r--org.eclipse.ui.workbench.texteditor.tests/test.xml19
2 files changed, 2 insertions, 36 deletions
diff --git a/org.eclipse.ui.editors.tests/test.xml b/org.eclipse.ui.editors.tests/test.xml
index 1359041b709..6a77dbcc769 100644
--- a/org.eclipse.ui.editors.tests/test.xml
+++ b/org.eclipse.ui.editors.tests/test.xml
@@ -20,19 +20,6 @@
</delete>
</target>
- <!-- This target defines the tests that need to be run. -->
- <target name="suite">
- <property name="eclipse-editors-folder"
- value="${eclipse-home}/eclipse_editors_folder"/>
- <delete dir="${eclipse-editors-folder}" quiet="true"/>
- <ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="data-dir" value="${eclipse-editors-folder}"/>
- <property name="plugin-name" value="${plugin-name}"/>
- <property name="classname"
- value="org.eclipse.ui.editors.tests.EditorsTestSuite"/>
- </ant>
- </target>
-
<!-- This target holds code to cleanup the testing environment after -->
<!-- after all of the tests have been run. You can use this target to -->
<!-- delete temporary files that have been created. -->
@@ -41,11 +28,7 @@
<!-- This target runs the test suite. Any actions that need to happen -->
<!-- after all the tests have been run should go here. -->
- <target name="run" depends="init,suite,cleanup">
- <ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
- <property name="includes" value="org*.xml"/>
- <property name="output-file" value="${plugin-name}.xml"/>
- </ant>
+ <target name="run">
</target>
<!-- This target runs the performance test suites. -->
diff --git a/org.eclipse.ui.workbench.texteditor.tests/test.xml b/org.eclipse.ui.workbench.texteditor.tests/test.xml
index 0e48b73a9a0..d46192528e5 100644
--- a/org.eclipse.ui.workbench.texteditor.tests/test.xml
+++ b/org.eclipse.ui.workbench.texteditor.tests/test.xml
@@ -20,19 +20,6 @@
</delete>
</target>
- <!-- This target defines the tests that need to be run. -->
- <target name="suite">
- <property name="eclipse-workbench-texteditor-folder"
- value="${eclipse-home}/eclipse_workbench_texteditor_folder"/>
- <delete dir="${eclipse-workbench-texteditor-folder}" quiet="true"/>
- <ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
- <property name="data-dir" value="${eclipse-workbench-texteditor-folder}"/>
- <property name="plugin-name" value="${plugin-name}"/>
- <property name="classname"
- value="org.eclipse.ui.workbench.texteditor.tests.WorkbenchTextEditorTestSuite"/>
- </ant>
- </target>
-
<!-- This target holds code to cleanup the testing environment after -->
<!-- after all of the tests have been run. You can use this target to -->
<!-- delete temporary files that have been created. -->
@@ -41,11 +28,7 @@
<!-- This target runs the test suite. Any actions that need to happen -->
<!-- after all the tests have been run should go here. -->
- <target name="run" depends="init,suite,cleanup">
- <ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
- <property name="includes" value="org*.xml"/>
- <property name="output-file" value="${plugin-name}.xml"/>
- </ant>
+ <target name="run">
</target>
<!-- This target runs the performance test suites. -->

Back to the top