| <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="performance""/> |
| </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> |