Stephan Herrmann | 36c2699 | 2010-04-01 23:18:59 +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 | <!-- library.xml need these properties-->
|
| 6 | <property name="eclipse-home" value="${test.eclipseDir}"/>
|
| 7 | <property name="test.target" value="performance"/>
|
| 8 |
|
| 9 | <!-- sets the properties eclipseTest-home, and library-file -->
|
| 10 | <property name="plugin-name" value="org.eclipse.objectteams.otdt.test.builder"/>
|
| 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.test.builder.AllTests.xml,${plugin-name}.${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 |
|
Stephan Herrmann | ad728bc | 2010-07-20 00:35:22 +0000 | [diff] [blame] | 28 | <!-- OTDT UI tests -->
|
Stephan Herrmann | 36c2699 | 2010-04-01 23:18:59 +0000 | [diff] [blame] | 29 | <property name="otdt-builder-folder"
|
| 30 | value="${otdt-tests-workspace}/otdt-builder-folder"/>
|
Stephan Herrmann | ad728bc | 2010-07-20 00:35:22 +0000 | [diff] [blame] | 31 | <delete dir="${otdt-builder-folder}" quiet="true"/>
|
Stephan Herrmann | 36c2699 | 2010-04-01 23:18:59 +0000 | [diff] [blame] | 32 |
|
Stephan Herrmann | ad728bc | 2010-07-20 00:35:22 +0000 | [diff] [blame] | 33 | <ant target="ui-test" antfile="${library-file}" dir="${test.eclipseDir}">
|
Stephan Herrmann | 36c2699 | 2010-04-01 23:18:59 +0000 | [diff] [blame] | 34 | <property name="data-dir" value="${otdt-builder-folder}"/>
|
| 35 | <property name="plugin-name" value="${plugin-name}"/>
|
| 36 | <property name="classname" value="org.eclipse.objectteams.otdt.test.builder.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.test.builder.AllTests.xml"/>
|
| 60 | <property name="output-file" value="${plugin-name}.${file-id}.xml"/>
|
| 61 | </ant>
|
| 62 | -->
|
| 63 | </target>
|
| 64 |
|
| 65 | </project>
|