1############################################################################### 2# Copyright (c) 2004, 2006 IBM Corporation and others. 3# All rights reserved. This program and the accompanying materials 4# are made available under the terms of the Eclipse Public License v1.0 5# which accompanies this distribution, and is available at 6# http://www.eclipse.org/legal/epl-v10.html 7# 8# Contributors: 9# IBM Corporation - initial API and implementation 10############################################################################### 11#target to call in test.xml: runtests-local | runtests-remote 12testTarget=runtests-remote 13 14#use rsh as protocol for login and copying files. 15rsh=true 16 17#directory on test machine where automated testing framework will be installed. ${buildLabel} 18#set by calling script 19testDir=c:\\buildtest\\${buildLabel} 20 21#name of zip file containing automated testing framework and JUnit test plug-ins 22testFramework=eclipse-Automated-Tests-${buildId}.zip 23 24#name of runtime to install and test 25runtime=eclipse-SDK-${buildId}-win32.zip 26 27#directory where test scripts are launched 28executionDir=${testDir}\\eclipse-testing 29 30#name of file that captures console output from running JUnit plug-in tests 31consolelog=win32_consolelog.txt 32 33#name of script to execute on remote machine 34testScript=start /min ${executionDir}\\testAll.bat 35 36#arguments to $(testScript) 37args=${executionDir} win32_consolelog.txt 38 39#name and path to downloaded vm. 40vmDest=jdk-1_4_2_14-fcs-bin-b03-windows-i586-22_jan_2007.zip 41 42#cvsroot 43cvsRoot=:pserver:anonymous@ottcvs1:/home/cvs/releng 44 45#path to tar.gz or zip of vm used to run tests 46vmDest=jdks/${vmDest} 47 48#command to execute to install the vm 49vmInstallCommand="unzip -o -qq ${testDir}\\${vmDest} -d ${testDir}" 50 51#skip default vm installation 52#skipVmInstall=true 53