Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 60de36b577246dc7541a50b33371deed0549df59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<project name="CDT Automated Tests" default="run" basedir=".">

	<property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
	<property name="cdt-core-loc" value="${eclipse-home}/cdt_core_folder"/>

	<target name="init">
		<tstamp/>
	</target>

	<target name="cleanup">
	</target>

	<target name="run" depends="init,suite">
		<ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
			<property name="includes" value="org*.xml"/>
			<property name="output-file" value="org.eclipse.cdt.testing.xml"/>
		</ant>
	</target>

	<target name="cdt-core" depends="init">
		<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
			<property name="data-dir" value="${cdt-core-loc}"/>
			<property name="plugin-name" value="org.eclipse.cdt.core.tests"/>
			<property name="classname" value="org.eclipse.cdt.core.suite.AutomatedIntegrationSuite"/>
		</ant>
	</target>

	<target name="suite" depends="cdt-core"/>

</project>

Back to the top