blob: ed00d8f3e4af275283d6d2f6da8de7e109c49605 [file] [log] [blame]
Stephan Herrmanndcd87c12010-04-25 10:59:27 +00001<?xml version="1.0"?>
2<!--
3 Copyright (c) 2010 Stephan Herrmann and others.
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/epl-v10.html
8
9 Contributors:
10 Stephan Herrmann - initial API and implementation
11-->
12<project name="Main Object Teams Build and Test Automation" default="INFO">
13
14 <target name="showGivenProperties"
15 description="Show values of all properties that should be passed from our caller.">
16 <echo>Properties passed into this script:
17------------------------------------------------------------------------------
18path of eclipse SDK:
19 eclipse-app.tgz = ${eclipse-app.tgz}
Stephan Herrmannaf43e4a2013-04-29 23:19:56 +020020eclipse SDK build qualifier:
21 eclipse.sdk.qualifier = ${eclipse.sdk.qualifier}
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000022path of eclipse test framework:
Stephan Herrmann8372dc22010-06-03 22:41:05 +000023 eclipse.tests.zip= ${eclipse.tests.zip}
24path of published updates:
25 published.updates= ${published.updates}
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000026should sources be built (true|false)?
27 do.build.all = ${do.build.all}
28should test be run (true|false)?
29 do.run.tests = ${do.run.tests}
Stephan Herrmann56428e92013-02-23 12:29:56 +010030directory for tempory files during testing:
31 test.tmpDir = ${test.tmpDir}
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000032------------------------------------------------------------------------------
33 </echo>
34 </target>
35
36 <target name="setupProperties" depends="showGivenProperties">
37
38 <dirname property="_toplevelDir" file="${ant.file}"/>
39
40 <!-- main configuration file (version dependent names etc.): -->
41 <loadproperties srcfile="${_toplevelDir}/run.properties" />
42
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000043 <!-- ======== Directories (indentation shows structure): ======== -->
44 <!-- build scripts: -->
45 <property name="OTScriptDir" value="${_toplevelDir}" />
46 <property name="buildfile" value="${OTScriptDir}/build.xml" />
47 <property name="builder-otcompiler" value="${OTScriptDir}/OT-Compiler" />
48 <property name="builder-otdt" value="${OTScriptDir}/OTDT-Build" />
49
50 <!-- directories for the build: -->
51 <property name="build.root.dir" value="${user.dir}/build-root" />
Stephan Herrmann33c26042010-06-03 10:24:16 +000052 <!-- These names are hard coded in pde-build: -->
53 <property name="buildDirectory" value="${build.root.dir}/src" />
Stephan Herrmann33c26042010-06-03 10:24:16 +000054 <property name="baseLocation" value="${build.root.dir}/eclipse" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000055
56 <!-- directories for testing: -->
57 <property name="test.root.dir" value="${user.dir}/test-root" />
58 <!-- This name is used in individual test.xml of test plugins: -->
59 <property name="test.eclipseDir" value="${test.root.dir}/eclipse" />
60
61 <!-- directories for update sites: -->
62 <property name="otdtUpdatesDir" value="${user.dir}/updateSite"/>
63 <property name="testsUpdatesDirBase" value="${user.dir}/updateSiteTests"/>
Stephan Herrmann20ff77c2010-06-03 09:31:09 +000064 <!-- will have sub directories "eclipse" and "otdt" -->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000065
Stephan Herrmanneac90682013-04-29 23:29:13 +020066 <!-- ======== Insert SDK build qualifier into our configuration files: ======== -->
67 <copy file="${map.file.path}.in" tofile="${map.file.path}">
68 <filterset>
69 <filter token="SDK_QUALIFIER" value="${eclipse.sdk.qualifier}"/>
70 </filterset>
71 </copy>
72 <copy file="${OTScriptDir}/test.properties.in" tofile="${OTScriptDir}/test.properties">
73 <filterset>
74 <filter token="SDK_QUALIFIER" value="${eclipse.sdk.qualifier}"/>
75 </filterset>
76 </copy>
77
Stephan Herrmanna1eeb302013-04-29 23:51:25 +020078 <!-- versions of test plugins: -->
Stephan Herrmanneac90682013-04-29 23:29:13 +020079 <loadproperties srcfile="${_toplevelDir}/test.properties" />
80
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000081 <!-- ======== More Configuration Details: ======== -->
82 <!-- maybe obsolete: file prefix to distinguish output files. -->
83 <property name="file-id" value="XXX" />
84
85 <!-- Configure Java for STAGE 1 and STAGE 2 building: -->
86 <property name="vm" value="java" />
87 <property name="vm.args" value="-Xmx912m" />
88 <property name="vm.args2" value="-XX:MaxPermSize=128m" />
89
90 <property name="installmode" value="clean" />
91
92 <property name="saxon.jar.name" value="saxon8.jar" />
93 <property name="saxon.jar.path" value="${user.home}/.ant/lib/${saxon.jar.name}" />
94 <available file="${saxon.jar.path}" property="_hasSaxon.jar" />
95
96 <!-- ant's os.arch is slightly different than osgi's arch -->
Stephan Herrmann1a9d85a2010-05-17 22:45:31 +000097 <condition property="arch" value="x86_64"> <!-- HACK: hard coding 64-bit architecture -->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +000098 <os arch="i386" />
99 </condition>
100 <condition property="arch" value="ppc64"> <!-- HACK: hard coding 64-bit architecture -->
101 <os arch="ppc" />
102 </condition>
Stephan Herrmann005fc312010-05-18 12:52:58 +0000103 <condition property="arch" value="x86_64"> <!-- Map ant's arch to OSGi arch -->
104 <os arch="amd64" />
105 </condition>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000106 <!-- if not set above, set it to os.arch -->
107 <property name="arch" value="${os.arch}" />
108
109 </target>
110
111
112 <target name="INFO">
113 <echo>Usage:
Stephan Herrmannb105b082011-05-15 00:39:56 +0000114 ant -f run.xml ot-junit-all -> runs OTDT Build and Testprocess
115 ant -f run.xml ot-junit-otdt -> runs OTDT Build and Testprocess excluding jdt tests
116 ant -f run.xml ot-junit-build -> runs just OTDT Buildprocess
117 ant -f run.xml ot-compiler-build -> just build the compiler
118 ant -f run.xml ot-junit-run -> runs just OTDT Tests w/o TestSetup
119 </echo>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000120 </target>
121
122 <target name="ot-junit-all" depends="setupProperties,checkOS" description="Build all and run all tests.">
123 <echo message="Starting BuildProcess and Testrun in ${build.root.dir}"/>
124 <antcall target="verifyAntInstall"/>
125 <antcall target="setupTests" />
126 <antcall target="runAllTests"/>
127 </target>
128
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000129 <target name="ot-junit-otdt" depends="setupProperties,checkOS" description="Build all and run otdt tests.">
130 <echo message="Starting BuildProcess and Testrun in ${build.root.dir}"/>
131 <antcall target="verifyAntInstall"/>
132 <antcall target="setupTests" />
133 <antcall target="runOTDTTests"/>
134 </target>
135
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000136 <target name="ot-junit-build" depends="setupProperties,checkOS" description="build everything without running tests">
137 <echo message="Starting BuildProcess in ${build.root.dir}"/>
138 <antcall target="verifyAntInstall"/>
139 <antcall target="createOTDTEclipse"/>
Stephan Herrmann8b5e97e2013-07-30 18:44:03 +0200140 <antcall target="setupTests" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000141 </target>
142
Stephan Herrmannb59f3f02011-05-15 00:17:51 +0000143 <target name="ot-compiler-build" depends="setupProperties,checkOS" description="build only the compiler (for debugging the build)">
144 <echo message="Starting BuildProcess in ${build.root.dir}"/>
145 <antcall target="verifyAntInstall"/>
146 <antcall target="createOTCompilerEclipse"/>
147 </target>
148
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000149 <target name="ot-junit-run" depends="setupProperties,checkOS" description="Run tests without building">
150 <echo message="Starting Testrun ${test.root.dir}"/>
151 <antcall target="runAllTests" />
152 </target>
153
Stephan Herrmann8b5e97e2013-07-30 18:44:03 +0200154 <target name="ot-junit-run-ot" depends="setupProperties,checkOS" description="Run OT tests without building">
155 <echo message="Starting Testrun ${test.root.dir}"/>
156 <antcall target="runOTDTTests" />
157 </target>
158
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000159 <!-- =================== END Public Targets ==================== -->
160
161 <!-- === Setup Targets: === -->
162
163 <target name="verifyAntInstall" unless="_hasSaxon.jar">
164 <copy failonerror="true" overwrite="false" file="${OTScriptDir}/${saxon.jar.name}" tofile="${saxon.jar.path}"></copy>
165 <echo message="Needed to copy saxon8.jar to ${saxon.jar.path}. Please restart the build." />
166 <echo message="For an explanation, see http://ant.apache.org/faq.html#delegating-classloader-1.6" />
167 <fail message="See above. Please restart the build."/>
168 </target>
169
170 <!-- checks on which os ant is run, set ${os} and ${ws} accordingly -->
171 <target name="determineOS">
172 <condition property="os.isWindows">
173 <os family="windows"/>
174 </condition>
175
176 <condition property="os.isLinux">
177 <os name="Linux" />
178 </condition>
179 </target>
180
181 <target name="checkOS" depends="determineOS,windows,linux"/>
182
183 <target name="windows" if="os.isWindows">
184 <echo message="OS is Windows"/>
185 <property name="os" value="win32" />
186 <property name="ws" value="win32" />
187 </target>
188
189 <target name="linux" unless="os.isWindows" >
190 <echo message="OS is Linux"/>
191 <!-- eclipse-app.tgz is already passed from the calling script -->
192 <property name="os" value="linux" />
193 <property name="ws" value="gtk" />
194 </target>
195
196 <target name="setupForCompile" depends="checkOS" unless="_hasCreatedOTDTEclipse">
197 <antcall target="UnzipEclipse"/>
198 <antcall target="AddPluginsToEclipse"/>
199 </target>
200
201 <target name="UnzipEclipse">
202 <echo message="Extracting Eclipse (${eclipse-app.tgz}) in ${build.root.dir}..."/>
203 <mkdir dir="${build.root.dir}"/>
204 <untar compression="gzip" src="${eclipse-app.tgz}" dest="${build.root.dir}"/>
205 </target>
206
Stephan Herrmann37d869a2011-12-16 23:48:02 +0100207 <target name="AddPluginsToEclipse" description="Add git.pde.build plugins to the base Eclipse">
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000208 <mkdir dir="${baseLocation}/dropins/plugins"/>
Stephan Herrmanne67e17d2011-10-27 14:36:26 +0000209 <copy file="${OTScriptDir}/lib/${git.pde.build}" todir="${baseLocation}/dropins/plugins" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000210 </target>
211
212 <!-- ==== BUILDING AND RUNNING: ==== -->
213
214 <!-- ==== BUILD STAGE 1: ==== -->
215 <!-- setting an empty inputstring is a workaround for http://issues.apache.org/bugzilla/show_bug.cgi?id=34461 -->
216 <target name="createOTCompilerEclipse" depends="setupForCompile" description="create the bootstrapping Eclipse with OT/J compiler">
217 <echo message="Invoke pdebuild for creating the OT-Compiler"/>
218 <java
219 inputstring=""
220 dir="${baseLocation}"
221 fork="true"
222 classname="org.eclipse.equinox.launcher.Main"
223 classpath="${baseLocation}/plugins/${org.eclipse.equinox.launcher_jar}">
224 <arg value="-Dosgi.ws=${ws}"/>
225 <arg value="-Dosgi.os=${os}"/>
226 <arg value="-Dosgi.arch=${arch}"/>
227 <arg value="-application"/>
228 <arg value="org.eclipse.ant.core.antRunner"/>
229 <arg value="-buildfile"/>
230 <arg value="${buildfile}"/>
231 <arg value="-Dbuild.root.dir=${build.root.dir}"/>
232 <arg value="-DbaseLocation=${baseLocation}"/>
233 <arg value="-DOTScriptDir=${OTScriptDir}"/>
234 <arg value="-Drun.eclipseScriptDir=${run.eclipseScriptDir}"/>
235 <arg value="-Dbuilder=${builder-otcompiler}"/>
236 <arg value="-D${installmode}=true"/> <!-- <- obsolete? -->
237 <arg value="-Dcomponent.short=OT-Compiler"/>
Stephan Herrmannb105b082011-05-15 00:39:56 +0000238 <arg value="-DotdtUpdatesDir=${otdtUpdatesDir}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000239 <arg value="-Dconfigs=*,*,*"/>
240 <arg value="-Dbaseos=${os}"/>
241 <arg value="-Dbasews=${ws}"/>
242 <arg value="-Dbasearch=${arch}"/>
243 <arg value="-Dtest.root.dir=${test.root.dir}"/>
244 <arg value="-Dtest.eclipseDir=${test.eclipseDir}"/>
245 <arg value="-DmapVersionTag=${mapVersionTag}"/>
Stephan Herrmannd8abd7a2012-04-12 22:08:50 +0200246 <arg value="-Dmap.file.path=${map.file.path}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000247 <arg value="-Declipse-app.tgz=${eclipse-app.tgz}"/>
248 <arg value="-Declipse.tests.zip=${eclipse.tests.zip}"/>
Stephan Herrmanneacdfde2010-08-25 05:58:42 +0000249 <!--arg value="-verbose" /-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000250 <jvmarg value="${vm.args}"/>
251 <jvmarg value="${vm.args2}"/>
252 </java>
Stephan Herrmannb105b082011-05-15 00:39:56 +0000253 <!-- Now we should have an update site with the patch feature, time to install it into base: -->
Stephan Herrmannb59f3f02011-05-15 00:17:51 +0000254 <ant antfile="${OTScriptDir}/p2helper.xml" target="installFeature" dir="${baseLocation}">
255 <property name="feature" value="org.eclipse.objectteams.otdt.core.patch.feature.group"/>
256 <property name="sourceUpdatesDir" value="${otdtUpdatesDir}"/>
257 <property name="targetEclipseDir" value="${baseLocation}"/>
258 </ant>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000259 </target>
260
261 <!-- ==== BUILD STAGE 2: ==== -->
262 <!-- setting an empty inputstring is a workaround for http://issues.apache.org/bugzilla/show_bug.cgi?id=34461 -->
263 <target name="createOTDTEclipse" depends="createOTCompilerEclipse" unless="_hasCreatedOTDTEclipse">
264
265 <!-- Make org.eclipse.test.performance available while compiling test projects: -->
266 <echo message="Pre-installing Eclipse Test Framework into OTCompilerEclipse..."/>
Stephan Herrmann67cbf1c2010-09-26 09:59:15 +0000267 <mkdir dir="${testsUpdatesDirBase}/eclipse"/>
268 <unzip dest="${testsUpdatesDirBase}/eclipse" src="${eclipse.tests.zip}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000269 <ant antfile="${OTScriptDir}/p2helper.xml" target="installFeature" dir="${baseLocation}">
270 <property name="feature" value="org.eclipse.test.feature.group"/>
Stephan Herrmann20ff77c2010-06-03 09:31:09 +0000271 <property name="sourceUpdatesDir" value="${testsUpdatesDirBase}/eclipse"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000272 <property name="targetEclipseDir" value="${baseLocation}"/>
273 </ant>
Stephan Herrmann8372dc22010-06-03 22:41:05 +0000274
275 <!-- pre-load updateSite with published releases: -->
Stephan Herrmann0c9b5722010-06-04 22:13:03 +0000276 <mkdir dir="${otdtUpdatesDir}/plugins"/>
277 <mkdir dir="${otdtUpdatesDir}/features"/>
278 <exec executable="/bin/sh">
279 <arg value="-c"/>
280 <arg value="ln -s ${published.updates}/features/* ${otdtUpdatesDir}/features/"/>
281 </exec>
282 <exec executable="/bin/sh">
283 <arg value="-c"/>
284 <arg value="ln -s ${published.updates}/plugins/* ${otdtUpdatesDir}/plugins/"/>
285 </exec>
Stephan Herrmann8372dc22010-06-03 22:41:05 +0000286 <!-- pre-load category-less metadata: -->
287 <copy failonerror="false" flatten="true" toDir="${otdtUpdatesDir}">
288 <fileset dir="${user.dir}/metadata">
289 <include name="*.xml"/>
290 </fileset>
291 </copy>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000292
293 <echo message="Invoke pdebuild for creating a full OTDT"/>
294 <java
295 inputstring=""
296 dir="${baseLocation}"
297 fork="true"
298 classname="org.eclipse.equinox.launcher.Main"
299 classpath="${baseLocation}/plugins/${org.eclipse.equinox.launcher_jar}">
300 <arg value="-clean"/>
301 <arg value="-Dosgi.ws=${ws}"/>
302 <arg value="-Dosgi.os=${os}"/>
303 <arg value="-Dosgi.arch=${arch}"/>
304 <arg value="-application"/>
305 <arg value="org.eclipse.ant.core.antRunner"/>
306 <arg value="-buildfile"/>
307 <arg value="${buildfile}"/>
308 <arg value="-Dbuild.root.dir=${build.root.dir}"/>
309 <arg value="-DbaseLocation=${baseLocation}"/>
310 <arg value="-Drun.eclipseScriptDir=${run.eclipseScriptDir}"/>
311 <arg value="-DOTScriptDir=${OTScriptDir}"/>
312 <arg value="-Dbuilder=${builder-otdt}"/>
313 <arg value="-D${installmode}=true"/>
314 <arg value="-Dcomponent.short=OTDT-Build"/>
315 <arg value="-DotdtUpdatesDir=${otdtUpdatesDir}"/>
Stephan Herrmann20ff77c2010-06-03 09:31:09 +0000316 <arg value="-DtestsUpdatesDirBase=${testsUpdatesDirBase}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000317 <arg value="-Dbaseos=${os}"/>
318 <arg value="-Dbasews=${ws}"/>
319 <arg value="-Dbasearch=${arch}"/>
320 <arg value="-Dtest.root.dir=${test.root.dir}"/>
321 <arg value="-Dtest.eclipseDir=${test.eclipseDir}"/>
Stephan Herrmannd8abd7a2012-04-12 22:08:50 +0200322 <arg value="-Dmap.file.path=${map.file.path}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000323 <arg value="-DmapVersionTag=${mapVersionTag}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000324 <arg value="-Ddo.run.tests=${do.run.tests}"/>
325 <arg value="-Ddo.build.all=${do.build.all}"/>
326 <arg value="-Declipse-app.tgz=${eclipse-app.tgz}"/>
327 <arg value="-Declipse.tests.zip=${eclipse.tests.zip}"/>
Stephan Herrmanneacdfde2010-08-25 05:58:42 +0000328 <!--arg value="-verbose" /-->
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000329 <jvmarg value="${vm.args}"/>
330 <jvmarg value="${vm.args2}"/>
331 <!-- arg value="${verboseAnt}"/ -->
332 <!-- arg value="-debug" / -->
333 </java>
Stephan Herrmann20ff77c2010-06-03 09:31:09 +0000334 <!-- At this point a local update site exists, thanks to p2gathering=true -->
Stephan Herrmann99e184d2010-06-11 17:27:25 +0000335
336 <ant antfile="${OTScriptDir}/p2helper.xml" target="patchMetadata" dir="${otdtUpdatesDir}"/>
337
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000338 <property name="_hasCreatedOTDTEclipse" value="true" />
339 </target>
340
341 <!-- TESTING at STAGE 3: -->
342 <target name="setupTests" depends="createOTDTEclipse" description="Install the tests into an fresh OTDT">
343 <available file="${buildDirectory}/label.properties" property="label.properties.exists" />
344 <ant antfile="${OTScriptDir}/test.xml" target="setupTests" dir="${build.root.dir}">
345 <property name="os" value="${os}" />
346 <property name="ws" value="${ws}" />
347 <property name="arch" value="${arch}" />
348 <property name="baseos" value="${os}" />
349 <property name="basews" value="${ws}" />
350 <property name="basearch" value="${arch}" />
351 <property name="eclipse-app.tgz" value="${eclipse-app.tgz}" />
352 <property file="${buildDirectory}/label.properties" />
353 <property name="otdtUpdatesDir" value="${otdtUpdatesDir}" />
Stephan Herrmann20ff77c2010-06-03 09:31:09 +0000354 <property name="testsUpdatesDirBase" value="${testsUpdatesDirBase}" />
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000355 </ant>
356 </target>
357
358 <target name="runAllTests" description="Delegate to the next level script to perform the actual testing.">
359 <ant antfile="${OTScriptDir}/test.xml" target="all" dir="${build.root.dir}">
360 <property name="os" value="${os}" />
361 <property name="ws" value="${ws}" />
362 <property name="arch" value="${arch}" />
363 <property name="baseos" value="${os}" />
364 <property name="basews" value="${ws}" />
365 <property name="basearch" value="${arch}" />
366 <property name="otdtUpdatesDir" value="${otdtUpdatesDir}" />
Stephan Herrmann20ff77c2010-06-03 09:31:09 +0000367 <property name="testsUpdatesDirBase" value="${testsUpdatesDirBase}" />
Stephan Herrmann56428e92013-02-23 12:29:56 +0100368 <property name="test.tmpDir" value="${test.tmpDir}"/>
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000369 <property name="vmargs" value="${vmargs}" />
370 </ant>
371 </target>
372
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000373 <target name="runOTDTTests" description="Delegate to the next level script to perform the actual testing.">
374 <ant antfile="${OTScriptDir}/test.xml" target="otdt-tests" dir="${build.root.dir}">
375 <property name="os" value="${os}" />
376 <property name="ws" value="${ws}" />
377 <property name="arch" value="${arch}" />
378 <property name="baseos" value="${os}" />
379 <property name="basews" value="${ws}" />
380 <property name="basearch" value="${arch}" />
381 <property name="otdtUpdatesDir" value="${otdtUpdatesDir}" />
382 <property name="testsUpdatesDirBase" value="${testsUpdatesDirBase}" />
Stephan Herrmann56428e92013-02-23 12:29:56 +0100383 <property name="test.tmpDir" value="${test.tmpDir}"/>
Stephan Herrmannd8c81652010-11-06 15:01:14 +0000384 <property name="vmargs" value="${vmargs}" />
385 </ant>
386 </target>
387
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000388 <!-- currently unused target name="collectResults">
Stephan Herrmanna1eeb302013-04-29 23:51:25 +0200389 <ant target="collect" antfile="${test.root.dir}/library.xml" dir="${otresults}">
Stephan Herrmanndcd87c12010-04-25 10:59:27 +0000390 <property name="includes" value="org.*.xml"/>
391 <property name="output-file" value="AllTestSuites.xml"/>
392 </ant>
393 </target -->
394
395</project>