Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2015-11-04 13:48:22 +0000
committerThomas Watson2015-11-04 13:48:22 +0000
commit7afa6d896999548d517f3c99ffc85c3280799fbf (patch)
treee6dc837f32e51c996a47b32d0c51a949918c9fac
parent789dcaaff6f59bd3978c30c21108c18895534013 (diff)
downloadrt.equinox.framework-7afa6d896999548d517f3c99ffc85c3280799fbf.tar.gz
rt.equinox.framework-7afa6d896999548d517f3c99ffc85c3280799fbf.tar.xz
rt.equinox.framework-7afa6d896999548d517f3c99ffc85c3280799fbf.zip
Bug 443233 - Remove performance target from "osgi tests"
-rw-r--r--bundles/org.eclipse.osgi.tests/test.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/bundles/org.eclipse.osgi.tests/test.xml b/bundles/org.eclipse.osgi.tests/test.xml
index 16a55940a..2aff3ccf8 100644
--- a/bundles/org.eclipse.osgi.tests/test.xml
+++ b/bundles/org.eclipse.osgi.tests/test.xml
@@ -34,12 +34,14 @@
<!-- This target runs the performance test suites. Any actions that need to happen after all -->
<!-- the tests have been run should go here. -->
+ <!--
<target name="performance" depends="init,performance-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>
+ -->
<target name="OSGiTests" depends="init,cleanup">
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
@@ -48,7 +50,7 @@
<property name="classname" value="org.eclipse.osgi.tests.AutomatedTests"/>
</ant>
</target>
-
+<!--
<target name="OSGiPerformanceTests" depends="init,cleanup">
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="data-dir" value="${osgi_location}"/>
@@ -56,11 +58,12 @@
<property name="classname" value="org.eclipse.osgi.tests.perf.AllTests"/>
</ant>
</target>
-
+-->
<!-- This target defines the tests that need to be run. -->
<target name="suite" depends="OSGiTests"/>
<!-- This target defines the performance tests that need to be run. -->
+ <!--
<target name="performance-suite" depends="OSGiPerformanceTests"/>
-
+ -->
</project>

Back to the top