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:
parent
ea34bb4360
commit
48f0258e47
1 changed files with 15 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue