blob: c1ae59ab8a8d2aa5bbf05f8fb08774628d0763ef [file] [log] [blame]
<project name="Automated WTP Testing" default="all" basedir=".">
<import file="test.xml"/>
<target name="setup" unless="noclean">
<antcall target="configureTeamTest"/>
</target>
<target name="performance" if="performance.target.present">
<antcall target="setup" />
<loadfile property="content" srcFile="${eclipse-home}/plugins/${testPlugin}/test.xml"/>
<condition property="hasPerformanceTarget">
<contains string="${content}" substring="name=&quot;performance&quot;"/>
</condition>
<antcall target="performance2"/>
</target>
<target name="performance2" if="hasPerformanceTarget">
<ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}" target="performance" />
<copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
<antcall target="genHtml" />
</target>
</project>