1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 02:06:01 +02:00

New release engineering scripts

This commit is contained in:
Doug Schaefer 2004-03-08 17:01:50 +00:00
parent 6bd526e1b6
commit df782892ee

View file

@ -0,0 +1,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>