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
24 application.title=nashorn
25
26 # location of JDK embedded ASM sources
27 jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm
28
29 # source and target levels
30 build.compiler=modern
31 javac.source=1.7
32 javac.target=1.7
33
34 # nashorn version information
35 nashorn.version=0.1
36 nashorn.fullversion=0.1
37 nashorn.product.name=Oracle Nashorn
38
39 # This directory is removed when the project is cleaned:
40 build.dir=build
41 build.classes.dir=${build.dir}/classes
42 build.zip=${build.dir}/nashorn.zip
43 build.gzip=${build.dir}/nashorn.tar.gz
44
45 # nashorn Shell tool
46 nashorn.shell.tool=jdk.nashorn.tools.Shell
47
48 # nasgen tool
49 nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
50
51 # parallel test runner tool
52 parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
53
54 # test classes directory
55 build.test.classes.dir=${build.dir}/test/classes
56 # nashorn test jar - internal tests jar and api tests jar
57 nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
58 nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
59
60 # test results directory
61 build.test.results.dir=${build.dir}/test/reports
62
63 # This directory is removed when the project is cleaned:
64 dist.dir=dist
65 dist.jar=${dist.dir}/nashorn.jar
66 dist.javadoc.dir=${dist.dir}/javadoc
67
68 # nashorn javafx shell
69 fxshell.tool = jdk.nashorn.tools.FXShell
70 fxshell.classes.dir = ${build.dir}/fxshell/classes
71 fxshell.dir = tools/fxshell
72 fxshell.jar = ${dist.dir}/nashornfx.jar
73
74 # configuration for java flight recorder
75 run.test.jvmargs.jfr=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath=${build.dir},stackdepth=128
76
77 # jars refererred
78 file.reference.testng.jar=test/lib/testng.jar
79
80 # Set testng verbose level
81 # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed)
82 # Actually, this is a lie: you can specify -1 and this will put TestNG in
83 # debug mode (no longer slicing off stack traces and all)."
84
85 testng.verbose=2
86
87 # TestNG listeners - we want to replace TestNG's own JUnit
88 # reporter, but want everything else provided by default
89 # Unfortunately, we've to clone the other default reporters here.
90
91 testng.listeners=\
92 org.testng.reporters.SuiteHTMLReporter, \
93 org.testng.reporters.TestHTMLReporter, \
94 org.testng.reporters.jq.Main, \
95 org.testng.reporters.FailedReporter, \
96 org.testng.reporters.XMLReporter \
97 org.testng.reporters.EmailableReporter, \
98 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
99
100 javac.debug=true
101 javac.encoding=ascii
102 javac.classpath=\
103 ${build.classes.dir}
104 javac.test.classpath=\
105 ${build.classes.dir}:\
106 ${build.test.classes.dir}:\
107 ${file.reference.testng.jar}
108
109 meta.inf.dir=${src.dir}/META-INF
110
111 run.classpath=\
112 ${build.classes.dir}
113
114 # test scripts to run
115 test.dir=test
116 test.script.dir=test/script
117 test.basic.dir=test/script/basic
118 test.maptests.dir=test/script/maptests
119 test.error.dir=test/script/error
120 test.sandbox.dir=test/script/sandbox
121 test.trusted.dir=test/script/trusted
122 test.external.dir=test/script/external
123 test262.dir=${test.external.dir}/test262
124 test262.suite.dir=${test262.dir}/test/suite
125 testjfx.dir=${test.script.dir}/jfx
126 testmarkdown.dir=${test.script.dir}/markdown
127
128 test-sys-prop.test.dir=${test.dir}
129 test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
130 test-sys-prop.test262.suite.dir=${test262.suite.dir}
131 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
132 test-sys-prop.test.basic.dir=${test.basic.dir}
133
134 # framework root for our script tests
135 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
136
137 # Control the verbosity of ParserTest
138 test-sys-prop.parsertest.verbose=false
139
140 # turn on/off scripting mode for parser tests
141 test-sys-prop.parsertest.scripting=true
142
143 # turn on/off test262 scripts for parser tests
144 test-sys-prop.parsertest.test262=false
145
146 # Control the verbosity of the CompilerTest
147 test-sys-prop.compilertest.verbose=false
148
149 # turn on/off scripting mode for compiler tests
150 test-sys-prop.compilertest.scripting=true
151
152 # turn on/off test262 scripts for compiler tests
153 test-sys-prop.compilertest.test262=false
154
155 # test directory to be excluded.
156 test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
157
158 # run everything that's js in here, without checking file headers for test annotations
159 test-sys-prop.test.js.unchecked.dir=${test262.dir}
160
161 # test root for octane
162 octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
163
164 # run octane benchmars in separate processes?
165 octane-test-sys-prop.separate.process=true
166
167 # framework root for octane
168 octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
169
170 # list of tests to be excluded
171 # mandreel excluded due to OOM
172 octane-test-sys-prop.test.js.exclude.list=\
173 base.js \
174 run.js \
175 mandreel.js
176
177 # test root for sunspider
178 sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
179
180 # framework root for sunspider
181 sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
182
183 # list of tests to be excluded
184 sunspider-test-sys-prop.test.js.exclude.list=
185
186 # execute our script tests in shared nashorn context or not?
187 test-sys-prop.test.js.shared.context=false
188
189 # execute test262 tests in shared nashorn context or not?
190 test262-test-sys-prop.test.js.shared.context=true
191
192 # test262 test root
193 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
194 # test262 enable/disable strict mode tests
195 test262-test-sys-prop.test.js.enable.strict.mode=true
196
197 # file containing test262 tests to be excluded
198 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
199
200 # list of test262 test dirs to be excluded
201 test262-test-sys-prop.test.js.exclude.dir=\
202 ${test262.suite.dir}/intl402/ \
203 ${test262.suite.dir}/bestPractice/
204
205 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
206
207 # test262 test frameworks
208 test262-test-sys-prop.test.js.framework=\
209 --class-cache-size=0 \
210 --no-java \
211 --no-typed-arrays \
212 -timezone=PST \
213 ${test.script.dir}/test262.js \
214 ${test262.dir}/test/harness/framework.js \
215 ${test262.dir}/test/harness/sta.js
216
217 # testmarkdown test root
218 testmarkdown-test-sys-prop.test.js.roots=${testmarkdown.dir}
219
220 # execute testmarkdown tests in shared nashorn context or not?
221 testmarkdown-test-sys-prop.test.js.shared.context=false
222
223 # framework root for markdown script tests
224 testmarkdown-test-sys-prop.test.js.framework=\
225 ${test.script.dir}${file.separator}markdown.js
226
227 # testjfx test root
228 testjfx-test-sys-prop.test.js.roots=${testjfx.dir}
229
230 # execute testjfx tests in shared nashorn context or not?
231 testjfx-test-sys-prop.test.js.shared.context=false
232
233 # framework root for our script tests
234 testjfx-test-sys-prop.test.js.framework=\
235 -fx \
236 ${test.script.dir}${file.separator}jfx.js
237
238 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
239 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar
240 file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar
241 file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
242 testjfx.run.test.classpath=\
243 ${file.reference.jemmyfx.jar}${path.separator}\
244 ${file.reference.jemmycore.jar}${path.separator}\
245 ${file.reference.jemmyawtinput.jar}${path.separator}\
246 ${file.reference.testng.jar}${path.separator}\
247 ${nashorn.internal.tests.jar}${path.separator}\
248 ${nashorn.api.tests.jar}
249
250 # testjfx VM options for script tests with @fork option
251 testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
252
253 run.test.classpath=\
254 ${file.reference.testng.jar}:\
255 ${nashorn.internal.tests.jar}:\
256 ${nashorn.api.tests.jar}
257
258 src.dir=src
259 test.src.dir=test/src
260
261 # -Xmx is used for all tests, -Xms only for octane benchmark
262 run.test.xmx=3G
263 run.test.xms=2G
264
265 run.test.user.language=tr
266 run.test.user.country=TR
267
268 run.test.jvmargs.common=-server -XX:+TieredCompilation -Dfile.encoding=UTF-8 -Duser.language=${run.test.user.language} -Duser.country=${run.test.user.country} -XX:+HeapDumpOnOutOfMemoryError
269
270 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
271 # -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
272
273 # turn on assertions for tests
274 run.test.jvmargs.main=${run.test.jvmargs.common} -ea
275
276 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
277 run.test.jvmargs.octane.main=${run.test.jvmargs.common}
278
279 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
280
281 # VM options for script tests with @fork option
282 test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
283
284 # path of rhino.jar for benchmarks
285 rhino.jar=
286
287 v8.shell=d8
288
289 #path to rhino jar file
290 octaneperf-sys-prop.rhino.jar=${rhino.jar}
291
292 #timeout for performance tests in minutes
293 octaneperf-sys-prop.timeout.value=10
294
295 ################
296 # codecoverage #
297 ################
298 #enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
299 make.code.coverage=false
300 #type of codecoverage; one of static or dynamic. Now only dynamic is supported
301 jcov=dynamic
302 #naming of CC results
303 #NB directory specified in the cc.dir will be cleaned up!!!
304 cc.dir=${basedir}/../Codecoverage_Nashorn
305 cc.result.file.name=CC_${jcov}_nashorn.xml
306 #dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
307 jcov2.lib.dir=${basedir}/../jcov2/lib
308 jcov.jar=${jcov2.lib.dir}/jcov.jar
309 cc.include=jdk\.nashorn\.*
310 cc.exclude=jdk\.nashorn\.internal\.scripts\.*
311 cc.dynamic.genereate.template=true
312 cc.template=${cc.dir}/CC_template.xml
313 cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}
--- EOF ---