Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-01-11 14:13:30 +0000
committerThomas Watson2006-01-11 14:13:30 +0000
commit392c2c53d05984b2d5ff795460faad516c7faf60 (patch)
tree1b2298e1b8eacf4e0a3d73a5fe7475925d789a23
parentca1a9dcfcb9571ceee177fafb87f35ae24868436 (diff)
downloadrt.equinox.framework-392c2c53d05984b2d5ff795460faad516c7faf60.tar.gz
rt.equinox.framework-392c2c53d05984b2d5ff795460faad516c7faf60.tar.xz
rt.equinox.framework-392c2c53d05984b2d5ff795460faad516c7faf60.zip
Bug 123111 Request to create test.xml for each of osgi, runtime and resources test plug-ins
-rw-r--r--bundles/org.eclipse.osgi.tests/build.properties2
-rw-r--r--bundles/org.eclipse.osgi.tests/test.xml66
2 files changed, 67 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi.tests/build.properties b/bundles/org.eclipse.osgi.tests/build.properties
index 027f2ca1f..106f90229 100644
--- a/bundles/org.eclipse.osgi.tests/build.properties
+++ b/bundles/org.eclipse.osgi.tests/build.properties
@@ -9,5 +9,5 @@
# IBM Corporation - initial API and implementation
###############################################################################
source.osgitests.jar = src/
-bin.includes = *.jar,test_files/,about.html, META-INF/
+bin.includes = *.jar,test_files/,about.html, META-INF/,test.xml
diff --git a/bundles/org.eclipse.osgi.tests/test.xml b/bundles/org.eclipse.osgi.tests/test.xml
new file mode 100644
index 000000000..16a55940a
--- /dev/null
+++ b/bundles/org.eclipse.osgi.tests/test.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0"?>
+<project name="Core Resources Automated Tests" default="run" basedir=".">
+
+ <!-- The property ${eclipse-home} should be passed into this script -->
+ <!-- sets the properties eclipse-home, and library-file -->
+ <property name="eclipse-home" value="${basedir}/../../"/>
+ <property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
+ <property name="osgi_location" value="${eclipse-home}/osgi_sniff_folder"/>
+ <property name="plugin-name" value="org.eclipse.osgi.tests"/>
+
+ <!-- This target holds all initialization code that needs to be done for -->
+ <!-- all tests that are to be run. Initialization for individual tests -->
+ <!-- should be done within the body of the suite target. -->
+ <target name="init">
+ <tstamp/>
+ </target>
+
+ <!-- This target holds code to cleanup the testing environment after the tests -->
+ <!-- have been run. You can use this to delete temporary files that are created. -->
+ <target name="cleanup">
+ <delete dir="${runtime_location}" quiet="true"/>
+ <delete dir="${resources_location}" quiet="true"/>
+ <delete dir="${osgi_location}" quiet="true"/>
+ </target>
+
+ <!-- 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>
+
+ <!-- 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}">
+ <property name="data-dir" value="${osgi_location}"/>
+ <property name="plugin-name" value="org.eclipse.osgi.tests"/>
+ <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}"/>
+ <property name="plugin-name" value="org.eclipse.osgi.tests"/>
+ <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