1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

Fix copying Terminal Prereq for Testing

This commit is contained in:
Martin Oberhuber 2008-02-13 22:39:22 +00:00
parent ca08063dd6
commit d753488c0b
2 changed files with 7 additions and 4 deletions

View file

@ -24,9 +24,10 @@
<!-- TODO: if your project requires more dependencies for testing, add them here -->
<echo message="Copy EMF SDK + Eclipse SDK to ${executionDir}..."/>
<copy todir="${executionDir}">
<!--TODO: Main runtime is RSE, therefore need to copy TM-terminal and others to test as well-->
<!--<fileset dir="${downloadsDir}" includes="${emfFile},${eclipseFile},${wtpFile},${orbitFile}"/>-->
<fileset dir="${downloadsDir}" includes="${emfFile},${eclipseFile},${orbitFile},TM-terminal-*"/>
<fileset dir="${downloadsDir}" includes="${emfFile},${eclipseFile},${orbitFile}"/>
<!--TODO: Main runtime is RSE, therefore need to copy TM-terminal and others to test as well-->
<fileset dir="${testDir}/../.." includes="TM-terminal-*.zip"/>
</copy>
<property name="shell" value="relengbuildgtk.sh"/>

View file

@ -44,8 +44,10 @@
<property name="dir" location="."/>
<echo message="Unpack SDK + JUnit Tests (${dir}/RSE-*.zip) ..."/>
<unzip dest="${install}" overwrite="true">
<fileset dir="${dir}"><include name="**/RSE-*.zip"/></fileset>
<fileset dir="${dir}"><include name="**/TM-terminal-*.zip"/></fileset>
<fileset dir="${dir}">
<include name="**/RSE-*.zip"/>
<include name="**/TM-terminal-*.zip"/>
</fileset>
</unzip>
</target>