Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d7f296dff58ed7d48d75091d3ed5d34bc8f94c06 (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

# This properties file contains items that are specific to the platform being tested, 
# Typically includes items dependent on exact OS, architecture, and location of files.
# (Historically, this info used to be contained in several files, such as 'vm.properties', 
# testing.properties, etc.)

# This value is computed by scripts, but there may be need or opportunity
# to denote "extra data" if set here? (But, other changes will be 
# needed to be fully functional, since indexer, web pages also depend 
# on this value.
# testedPlatform=linux.gtk.x86_64_8.0

# This is the VM to use to run the tests, if one prefers
# to use a different one from the one that stared the whole process.
jvm=/shared/common/jdk1.8.0_x64-latest/jre/bin/java

# TODO: can also list VMs to use for specific execution environments

# executable for ant <exec task
testExecutable=bash

#name of script to execute
testScript=./testAll.sh

# This value gets written to the "preference file", named org.eclipse.core.net.prefs. 
# We implement as a property string, since eventually we may test multiple proxy settings.
# These listed here are for tests running on build.eclipse.org, to access files outside 
# eclipse.org infrastructure.
org.eclipse.core.net.prefs="\
eclipse.preferences.version=1\n\
org.eclipse.core.net.hasMigrated=true\n\
proxiesEnabled=true\n\
systemProxiesEnabled=true\n\
nonProxiedHosts=172.30.206.*\n\
proxyData/HTTP/hasAuth=false\n\
proxyData/HTTP/host=proxy.eclipse.org\n\
proxyData/HTTP/port=9898\n\
proxyData/HTTPS/hasAuth=false\n\
proxyData/HTTPS/host=proxy.eclipse.org\n\
proxyData/HTTPS/port=9898\n"

cvstest.properties=/shared/eclipse/buildtests/cvstest.properties

Back to the top