| <?xml version="1.0"?> |
| <project name="JUnit tests" basedir="." > |
| |
| <property name="library-xml-file" value="${basedir}/plugins/org.eclipse.test_3.1.0/library.xml"/> |
| <import file="${library-xml-file}"/> |
| |
| <target name="core-test"> |
| <property name="extraVMargs" value=""/> |
| <antcall target="eclipse-test"> |
| <param name="application" value="org.eclipse.test.coretestapplication"/> |
| <param name="extraVMargs" value="${extraVMargs} -Dwtp.autotest.noninteractive=true"/> |
| </antcall> |
| </target> |
| |
| <target name="ui-test"> |
| <property name="extraVMargs" value=""/> |
| <antcall target="eclipse-test"> |
| <param name="application" value="org.eclipse.test.uitestapplication"/> |
| <param name="extraVMargs" value="${extraVMargs} -Dwtp.autotest.noninteractive=true"/> |
| </antcall> |
| </target> |
| |
| </project> |