Skip to main content
summaryrefslogtreecommitdiffstats
blob: 519b6ae198f8ab157b47eabe96b2d4b3d59cef37 (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
43
44
45
46
47
48

# 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, testedPlatform, 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=macosx.cocoa.x86_64_7.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=/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home/jre/bin/java
jvm=/Library/Java/JavaVirtualMachines/jdk1.8.0_51.jdk/Contents/Home/jre/bin/java
# TODO: can also list VMs to use for specific execution environments

# https://bugs.eclipse.org/bugs/show_bug.cgi?id=392213
# If this property is set, the actual location and file name
# is computed at test time, but this is assumed to be the
# VM argument required to specify that location.
loglocationarg=-XX:ErrorFile

# 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=*.eclipse.org|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=/Users/hudsonbuild/cvstest.properties

Back to the top