Stephan Herrmann | b1427fd | 2010-04-01 23:23:33 +0000 | [diff] [blame] | 1 | <project name="testsuite" default="run" basedir="."> |
| 2 | |
| 3 | <property name="otdt-tests-workspace" value="${test.eclipseDir}/otdt-tests-workspace"/> |
| 4 | |
| 5 | <!-- sets the properties eclipseTest-home, and library-file --> |
| 6 | <property name="plugin-name" value="org.eclipse.objectteams.otdt.ui.tests.dom"/> |
| 7 | |
| 8 | <!-- library.xml need these properties--> |
| 9 | <property name="eclipse-home" value="${test.eclipseDir}"/> |
| 10 | <property name="test.target" value="performance"/> |
| 11 | |
| 12 | <property name="library-file" value="${test.eclipseDir}/plugins/${org.eclipse.test}/library.xml"/> |
| 13 | |
| 14 | <!-- This target holds all initialization code that needs to be done for --> |
| 15 | <!-- all tests that are to be run. Initialization for individual tests --> |
| 16 | <!-- should be done within the body of the suite target. --> |
| 17 | <target name="init"> |
| 18 | <tstamp/> |
| 19 | <delete> |
| 20 | <fileset dir="${test.eclipseDir}" includes="org.eclipse.objectteams.otdt.ui.tests.dom.AllTests.xml,org.eclipse.objectteams.otdt.ui.tests.dom.${file-id}.xml"/> |
| 21 | </delete> |
| 22 | |
| 23 | </target> |
| 24 | |
| 25 | <!-- This target defines the tests that need to be run. --> |
| 26 | <target name="suite"> |
| 27 | |
| 28 | <!-- OTDT DOM tests --> |
| 29 | <property name="otdt-dom-folder" |
| 30 | value="${otdt-tests-workspace}/otdt-dom-folder"/> |
| 31 | <delete dir="${otdt-dom-folder}" quiet="true"/> |
| 32 | |
| 33 | <ant target="ui-test" antfile="${library-file}" dir="${test.eclipseDir}"> |
| 34 | <property name="data-dir" value="${otdt-dom-folder}"/> |
| 35 | <property name="plugin-name" value="${plugin-name}"/> |
| 36 | <property name="classname" value="org.eclipse.objectteams.otdt.ui.tests.dom.AllTests"/> |
| 37 | </ant> |
| 38 | |
| 39 | </target> |
| 40 | |
| 41 | <target name="checkOS"> |
| 42 | <condition property="os.isWindows"> |
| 43 | <os family="windows"/> |
| 44 | </condition> |
| 45 | </target> |
| 46 | |
| 47 | <!-- This target holds code to cleanup the testing environment after --> |
| 48 | <!-- after all of the tests have been run. You can use this target to --> |
| 49 | <!-- delete temporary files that have been created. --> |
| 50 | <target name="cleanup"> |
| 51 | |
| 52 | </target> |
| 53 | |
| 54 | <!-- This target runs the test suite. Any actions that need to happen --> |
| 55 | <!-- after all the tests have been run should go here. --> |
| 56 | <target name="run" depends="init,suite,cleanup"> |
| 57 | <!-- |
| 58 | <ant target="collect" antfile="${library-file}" dir="${test.eclipseDir}"> |
| 59 | <property name="includes" value="org.eclipse.objectteams.otdt.ui.tests.dom.AllTests.xml"/> |
| 60 | <property name="output-file" value="${plugin-name}.${file-id}.xml"/> |
| 61 | </ant> |
| 62 | --> |
| 63 | </target> |
| 64 | |
| 65 | </project> |