<?xml version="1.0"?>
<project name="testsuite" default="run" basedir=".">
<property name="eclipse-home" value="${basedir}/../.."/>
<property name="plugin-name" value="org.eclipse.swt.tests"/>
<property name="plugin-path" value="${eclipse-home}/plugins/${org.eclipse.swt.tests}"/>
<property name="library-file" value="${eclipse-home}/plugins/org.eclipse.test/library.xml"/>
<target name="init">
<tstamp/>
<delete>
<fileset dir="${eclipse-home}" includes="org*.xml"/>
</delete>
</target>
<target name="suite" unless="performance">
<property name="data" value="${eclipse-home}/swt_sniff_folder"/>
<delete dir="${location1}" quiet="true"/>
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="data-dir" value="${data}"/>
<property name="plugin-name" value="${plugin-name}"/>
<property name="classname" value="org.eclipse.swt.tests.junit.AllNonBrowserTests"/>
<property name="vmargs" value="-Dorg.eclipse.swt.internal.gtk.disablePrinting -Dorg.eclipse.swt.internal.gtk.enableStrictChecks"/>
</ant>
</target>
<target name="browser-suite" unless="performance">
<property name="data" value="${eclipse-home}/swt_sniff_folder"/>
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="timeout" value="900000"/>
<property name="data-dir" value="${data}"/>
<property name="plugin-name" value="${plugin-name}"/>
<property name="classname" value="org.eclipse.swt.tests.junit.AllBrowserTests"/>
</ant>
</target>
<target name="cleanup">
</target>
<target name="performance-suite">
<property name="swt-performance-folder" value="${eclipse-home}/swt_performance_folder" />
<delete dir="${swt-performance-folder}" quiet="true" />
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="timeout" value="14400000"/>
<property name="data-dir" value="${swt-performance-folder}" />
<property name="plugin-name" value="${plugin-name}" />
<property name="classname" value="org.eclipse.swt.tests.junit.performance.PerformanceTests" />
</ant>
</target>
<target name="performance" depends="init,performance-suite,cleanup">
<ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
<property name="includes" value="org*.xml" />
<property name="output-file" value="${plugin-name}.xml" />
</ant>
</target>
<target name="run" depends="init,suite,browser-suite,cleanup">
<ant target="collect" antfile="${library-file}" dir="${eclipse-home}">
<property name="includes" value="org*.xml"/>
<property name="output-file" value="${plugin-name}.xml"/>
</ant>
</target>
</project>