Home | History | Annotate | Download | only in scripts
      1 <project name="Customized testing instructions" default="customSetup">
      2 
      3 <!--All properties here are set in test.properties, with the exception of ${tester}-->
      4 	<target name="customSetup">		
      5 		<!--copy the script which sets up environment and invokes the tests on test machine-->
      6 		<exec dir="." executable="${copyClient}">
      7 			<arg line="${tester}/testAll.bat ${testMachine}:${executionDir}" />
      8 		</exec>
      9 			
     10 		<!--copy in the properties file for testing with alternate vm args-->	
     11 		<exec dir="." executable="${copyClient}">
     12 			<arg line="${tester}/vm.properties ${testMachine}:${executionDir}" />
     13 		</exec>
     14 	</target>
     15 
     16 </project>