project.properties revision 127:7e9fbe621d87
1#
2# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4# 
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.
8# 
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14# 
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18# 
19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23
24application.title=nashorn
25
26# location of JDK embedded ASM sources
27jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm
28
29# source and target levels
30build.compiler=modern
31javac.source=1.7
32javac.target=1.7
33
34# nashorn version information
35nashorn.version=0.1
36nashorn.fullversion=0.1
37nashorn.product.name=Oracle Nashorn
38
39# This directory is removed when the project is cleaned:
40build.dir=build
41build.classes.dir=${build.dir}/classes
42build.zip=${build.dir}/nashorn.zip
43build.gzip=${build.dir}/nashorn.tar.gz
44
45# nashorn Shell tool
46nashorn.shell.tool=jdk.nashorn.tools.Shell
47
48# nasgen tool
49nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
50
51# parallel test runner tool
52parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
53
54# test classes directory
55build.test.classes.dir=${build.dir}/test/classes
56# nashorn test jar - internal tests jar and api tests jar
57nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
58nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
59
60# test results directory
61build.test.results.dir=${build.dir}/test/reports
62
63# This directory is removed when the project is cleaned:
64dist.dir=dist
65dist.jar=${dist.dir}/nashorn.jar
66dist.javadoc.dir=${dist.dir}/javadoc
67
68# jars refererred
69file.reference.testng.jar=test/lib/testng.jar
70
71# Set testng verbose level
72# From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) 
73# Actually, this is a lie: you can specify -1 and this will put TestNG in 
74# debug mode (no longer slicing off stack traces and all)."
75
76testng.verbose=2
77
78# TestNG listeners - we want to replace TestNG's own JUnit
79# reporter, but want everything else provided by default
80# Unfortunately, we've to clone the other default reporters here.
81
82testng.listeners=\
83 org.testng.reporters.SuiteHTMLReporter, \
84 org.testng.reporters.jq.Main, \
85 org.testng.reporters.FailedReporter, \
86 org.testng.reporters.XMLReporter \
87 org.testng.reporters.EmailableReporter, \
88 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
89
90javac.debug=true
91javac.encoding=ascii
92javac.classpath=\
93    ${build.classes.dir}
94javac.test.classpath=\
95    ${build.classes.dir}:\
96    ${build.test.classes.dir}:\
97    ${file.reference.testng.jar}
98
99meta.inf.dir=${src.dir}/META-INF
100
101run.classpath=\
102    ${build.classes.dir}
103
104# test scripts to run
105test.dir=test
106test.script.dir=test/script
107test.basic.dir=test/script/basic
108test.error.dir=test/script/error
109test.sandbox.dir=test/script/sandbox
110test.trusted.dir=test/script/trusted
111test.external.dir=test/script/external
112test262.dir=${test.external.dir}/test262
113test262.suite.dir=${test262.dir}/test/suite
114
115test-sys-prop.test.dir=${test.dir}
116test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
117test-sys-prop.test262.suite.dir=${test262.suite.dir}
118test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
119test-sys-prop.test.basic.dir=${test.basic.dir}
120
121# framework root for our script tests
122test-sys-prop.test.js.framework=${test.script.dir}/assert.js
123
124# Control the verbosity of ParserTest
125test-sys-prop.parsertest.verbose=false
126
127# turn on/off scripting mode for parser tests
128test-sys-prop.parsertest.scripting=true
129
130# turn on/off test262 scripts for parser tests
131test-sys-prop.parsertest.test262=false
132
133# Control the verbosity of the CompilerTest
134test-sys-prop.compilertest.verbose=false
135
136# turn on/off scripting mode for compiler tests
137test-sys-prop.compilertest.scripting=true
138
139# turn on/off test262 scripts for compiler tests
140test-sys-prop.compilertest.test262=false
141
142# test directory to be excluded.
143test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
144
145# run everything that's js in here, without checking file headers for test annotations
146test-sys-prop.test.js.unchecked.dir=${test262.dir}
147
148# test root for octane
149octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
150
151# run octane benchmars in separate processes?
152octane-test-sys-prop.separate.process=true
153
154# framework root for octane
155octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
156
157# list of tests to be excluded
158# mandreel excluded due to OOM
159octane-test-sys-prop.test.js.exclude.list=\
160    base.js \
161    run.js  \
162    mandreel.js
163
164# test root for sunspider
165sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
166
167# framework root for sunspider
168sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
169
170# list of tests to be excluded
171sunspider-test-sys-prop.test.js.exclude.list=
172
173# execute our script tests in shared nashorn context or not?
174test-sys-prop.test.js.shared.context=false
175
176# execute test262 tests in shared nashorn context or not?
177test262-test-sys-prop.test.js.shared.context=true
178
179# test262 test root
180test262-test-sys-prop.test.js.roots=${test262.suite.dir}
181# test262 enable/disable strict mode tests
182test262-test-sys-prop.test.js.enable.strict.mode=true
183
184# file containing test262 tests to be excluded
185# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
186
187# list of test262 test dirs to be excluded
188test262-test-sys-prop.test.js.exclude.dir=\
189    ${test262.suite.dir}/intl402/
190
191# test262 test frameworks
192test262-test-sys-prop.test.js.framework=\
193    -timezone=PST \
194    ${test.script.dir}/test262.js \
195    ${test262.dir}/test/harness/framework.js \
196    ${test262.dir}/test/harness/sta.js
197
198run.test.classpath=\
199    ${file.reference.testng.jar}:\
200    ${nashorn.internal.tests.jar}:\
201    ${nashorn.api.tests.jar}
202
203src.dir=src
204test.src.dir=test/src
205
206run.test.xmx=3G
207run.test.xms=2G
208
209#  -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
210# add '-Dtest.js.outofprocess' to run each test in a new sub-process
211run.test.jvmargs.main=-server -Xmx${run.test.xmx} -XX:-TieredCompilation -esa -ea -Dnashorn.debug=true -Dfile.encoding=UTF-8
212#-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
213run.test.jvmargs.octane.main=-Xms${run.test.xms} ${run.test.jvmargs}
214
215run.test.jvmsecurityargs=-Xverify:all -Djava.security.properties=${basedir}/make/java.security.override -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
216
217# path of rhino.jar for benchmarks
218rhino.jar=
219
220v8.shell=d8
221
222#path to rhino jar file
223octaneperf-sys-prop.rhino.jar=${rhino.jar}
224
225#timeout for performance tests in minutes
226octaneperf-sys-prop.timeout.value=10
227
228################
229# codecoverage #
230################
231	#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
232make.code.coverage=false
233	#type of codecoverage; one of static or dynamic. Now only dynamic is supported
234jcov=dynamic
235	#naming of CC results
236	#NB directory specified in the cc.dir will be cleaned up!!!
237cc.dir=${basedir}/../Codecoverage_Nashorn
238cc.result.file.name=cc_nashorn.xml
239	#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
240jcov2.lib.dir=${basedir}/../jcov2/lib
241jcov.jar=${jcov2.lib.dir}/jcov.jar
242cc.include=jdk\.nashorn\.*
243cc.exclude=jdk\.nashorn\.internal\.scripts\.*
244cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}
245