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

Run Terminal Tests

This commit is contained in:
Martin Oberhuber 2008-02-13 14:44:06 +00:00
parent ea34bb4360
commit 48f0258e47

View file

@ -63,7 +63,7 @@
<copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" />
</target>
<target name="rse" description="Runs the test.xml of the tests plugin">
<target name="rse" description="Runs the test.xml of the rse.tests plugin">
<antcall target="runtests">
<param name="testPlugin" value="${org.eclipse.rse.tests}" />
<param name="report" value="org.eclipse.rse.tests" />
@ -76,6 +76,19 @@
<antcall target="runChkpii"/>
</target>
<target name="terminal" description="Runs the test.xml of the tm.terminal.test plugin">
<antcall target="runtests">
<param name="testPlugin" value="${org.eclipse.tm.terminal.test}" />
<param name="report" value="org.eclipse.tm.terminal.test" />
</antcall>
<!-- test if chkpii script exists before proceeding -->
<property name="common.releng.dir" value="${basedir}/../../../org.eclipse.modeling.common.releng"/>
<property name="chkpii.xml" value="${common.releng.dir}/scripts/chkpii.xml"/>
<available file="${chkpii.xml}" property="chkpiiXMLAvailable"/>
<antcall target="runChkpii"/>
</target>
<target name="runChkpii" if="chkpiiXMLAvailable">
<ant target="chkpii" antfile="${chkpii.xml}" inheritall="true">
<property name="zipPattern" value="RSE-*.zip"/>
@ -84,6 +97,7 @@
<target name="all">
<antcall target="rse" />
<antcall target="terminal" />
<antcall target="genHtml" />
</target>