1###############################################################################
2# Copyright (c) 2000, 2004 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-local
13
14#directory where automated testing framework will be installed
15testDir=${testBase}/${buildLabel}
16
17#name of zip file containing automated testing framework and JUnit test plug-ins
18testFramework=VE-Automated-Tests-${buildId}.zip
19
20#name of runtime to install and test
21runtime=VE-SDK-${buildId}.zip
22
23#directory where test scripts are launched
24executionDir=${testDir}/ve-testing
25
26#eclipse platforms:  win32 | linux-motif | linux-gtk | aix-motif | hpux-motif |solaris-motif
27platform=win32
28
29#name of file that captures console output from running JUnit plug-in tests
30consolelog=win32_consolelog.txt
31
32#executable used to launch testing
33testExecutable=cmd
34
35#arguments to ${testExecutable}
36args=/c ${executionDir}/runtests.bat win32_consolelog.txt
37
38#URL to vm used to run tests
39vmUrl=
40
41#name and path to downloaded vm.
42vmDest=${testBase}/testVmWin.zip
43
44#executable used to install downloaded vm
45vmInstallExecutable=unzip
46
47#arguments to ${vmInstallExecutable}
48vmInstallCommand=-o -qq ${vmDest}
49
50#Ant property to set if vm installation not required
51#skipVmInstall=true
52