Home | History | Annotate | Download | only in testingConfigTemplate
      1 <project name="Customized testing instructions" default="noDefault">
      2 
      3 	<target name="customSetup">
      4 		<!--copy the script which invokes the tests -->
      5 		<copy file="${tester}/runtests.bat" todir="${executionDir}" />
      6 
      7 		<!--copy the runtimes to install for testing, excluding the JUnit plug-in tests-->
      8 		<copy file="${buildDirectory}/${buildLabel}/VE-runtime-${buildId}.zip" todir="${executionDir}" />
      9 		<copy file="${buildDirectory}/../emf.zip" todir="${executionDir}" />
     10 		<copy file="${buildDirectory}/../gef.zip" todir="${executionDir}" />
     11 		<copy file="${buildDirectory}/../eclipse-SDK.zip" todir="${executionDir}" />
     12 	</target>
     13 
     14 	<target name="noDefault"/>
     15 </project>