| <project |
| name="heliosTests" |
| basedir="." |
| default="runtests"> |
| |
| <property name="outputDirectory" value="${basedir}" /> |
| |
| <taskdef |
| name="testLayouttask" |
| classname="org.eclipse.helios.tests.TestLayoutTask" |
| classpath="./checkLayout.jar"> |
| </taskdef> |
| |
| <target |
| name="runtests"> |
| <echo |
| message="Running tests"/> |
| |
| <!-- |
| <testLayouttask |
| tempWorkingDir="/tmp/tempWorkingLocation" |
| directoryToCheck="/home/data/httpd/download.eclipse.org/eclipse/updates/3.5milestones/S-3.5RC4-200906051444/" |
| failuresoccurred="failuresoccurred" /> |
| --> |
| <testLayouttask |
| tempWorkingDir="/tmp/tempWorkingLocation" |
| directoryToCheck="/home/data/httpd/download.eclipse.org/releases/staging/aggregate/" |
| outputResultsDirectory="${outputDirectory}" |
| failuresoccurred="failuresoccurred"/> |
| |
| <delete |
| dir="/tmp/tempWorkingLocation"/> |
| |
| <fail |
| if="failuresoccurred"/> |
| </target> |
| </project> |