Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3951d22a8a4ac1cd5811d180a7e9d60c1c5c1958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
###############################################################################
# Copyright (c) 2004, 2006 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################

platform=linux.gtk.x86_64_8.0

#directory on test machine where automated testing framework will be installed
#testDir=${testDir}

#name of zip file containing automated testing framework and JUnit test plug-ins
testFramework=${testDir}/eclipse-Automated-Tests-${buildId}.zip

#name of runtime to install and test
runtime=eclipse-SDK-${buildId}-linux-gtk.tar.gz

#name of deltaPack to install and test
runtimeDeltapack=eclipse-${buildId}-delta-pack.zip

#name of Platform runtime to install and test
runtimePlatform=eclipse-platform-${buildId}-linux-gtk.tar.gz

# Not currently used on eclipse.org tests
previousRuntimePlatform=eclipse-platform-3.7.1-linux-gtk.tar.gz

#directory where test scripts are launched
executionDir=${testDir}/eclipse-testing

testExecutable=bash

#name of script to execute on remote machine
#testScript=start /min /wait ${executionDir}\\testAll.bat
testScript=./testAll.sh

#arguments to $(testScript)
args=

Back to the top