1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Adding UI tests to build tests.

This commit is contained in:
Doug Schaefer 2005-02-09 20:24:21 +00:00
parent be61aaf41a
commit 2b9e8ed503

View file

@ -2,6 +2,7 @@
<property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
<property name="cdt-core-loc" value="${eclipse-home}/cdt_core_folder"/>
<property name="cdt-core-loc" value="${eclipse-home}/cdt_ui_folder"/>
<target name="init">
<tstamp/>
@ -25,6 +26,17 @@
</ant>
</target>
<target name="suite" depends="cdt-core"/>
<target name="cdt-ui" depends="init">
<ant target="ui-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="data-dir" value="${cdt-core-loc}"/>
<property name="plugin-name" value="org.eclipse.cdt.ui.tests"/>
<property name="classname" value="org.eclipse.cdt.ui.tests.AutomatedSuite"/>
</ant>
</target>
<target name="suite">
<antcall target="cdt-core"/>
</target>
</project>