blob: 77f8ed73bf72e9669be961770fa528cfde5aa826 [file] [log] [blame]
Jim Laskey98762d62012-12-21 16:36:24 -04001#
Marcus Lagergrend4287c22014-05-28 13:58:46 +02002# Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
Jim Laskey98762d62012-12-21 16:36:24 -04003# 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
Athijegannathan Sundararajanb501e8f2013-01-08 08:51:00 +053026# location of JDK embedded ASM sources
Athijegannathan Sundararajan1909e5f2013-03-01 15:58:29 +053027jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm
Athijegannathan Sundararajanb501e8f2013-01-08 08:51:00 +053028
Jim Laskey98762d62012-12-21 16:36:24 -040029# 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
Marcus Lagergrena6e90a42014-05-27 21:25:07 +020056
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +053057# nashorn test jar - internal tests jar and api tests jar
58nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
59nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
60
Jim Laskey98762d62012-12-21 16:36:24 -040061# test results directory
62build.test.results.dir=${build.dir}/test/reports
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +053063build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports
Attila Szegedi9fb4c3a2014-05-28 16:53:43 +020064build.nooptimistic.test.results.dir=${build.dir}/test/nooptimistic/reports
Jim Laskey98762d62012-12-21 16:36:24 -040065
66# This directory is removed when the project is cleaned:
67dist.dir=dist
68dist.jar=${dist.dir}/nashorn.jar
69dist.javadoc.dir=${dist.dir}/javadoc
70
James Laskey53d40472013-04-02 11:37:22 -030071# nashorn javafx shell
72fxshell.tool = jdk.nashorn.tools.FXShell
73fxshell.classes.dir = ${build.dir}/fxshell/classes
74fxshell.dir = tools/fxshell
75fxshell.jar = ${dist.dir}/nashornfx.jar
76
Athijegannathan Sundararajan0b0eece2013-11-25 18:40:02 +053077# configuration for java flight recorder
78run.test.jvmargs.jfr=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath=${build.dir},stackdepth=128
79
Jim Laskey98762d62012-12-21 16:36:24 -040080# jars refererred
81file.reference.testng.jar=test/lib/testng.jar
82
83# Set testng verbose level
84# From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed)
85# Actually, this is a lie: you can specify -1 and this will put TestNG in
86# debug mode (no longer slicing off stack traces and all)."
87
88testng.verbose=2
89
90# TestNG listeners - we want to replace TestNG's own JUnit
91# reporter, but want everything else provided by default
92# Unfortunately, we've to clone the other default reporters here.
93
94testng.listeners=\
95 org.testng.reporters.SuiteHTMLReporter, \
Athijegannathan Sundararajan993430a2013-05-29 15:41:07 +053096 org.testng.reporters.TestHTMLReporter, \
Jim Laskey98762d62012-12-21 16:36:24 -040097 org.testng.reporters.jq.Main, \
98 org.testng.reporters.FailedReporter, \
99 org.testng.reporters.XMLReporter \
100 org.testng.reporters.EmailableReporter, \
101 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
102
Jim Laskey98762d62012-12-21 16:36:24 -0400103javac.debug=true
104javac.encoding=ascii
105javac.classpath=\
Attila Szegedi82f8cef2013-02-14 13:22:26 +0100106 ${build.classes.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400107javac.test.classpath=\
108 ${build.classes.dir}:\
109 ${build.test.classes.dir}:\
110 ${file.reference.testng.jar}
111
112meta.inf.dir=${src.dir}/META-INF
113
114run.classpath=\
115 ${build.classes.dir}
116
117# test scripts to run
118test.dir=test
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530119test.nosecurity.dir=test/script/nosecurity
Jim Laskey98762d62012-12-21 16:36:24 -0400120test.script.dir=test/script
121test.basic.dir=test/script/basic
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530122test.maptests.dir=test/script/maptests
Jim Laskey98762d62012-12-21 16:36:24 -0400123test.error.dir=test/script/error
124test.sandbox.dir=test/script/sandbox
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530125test.trusted.dir=test/script/trusted
Jim Laskey98762d62012-12-21 16:36:24 -0400126test.external.dir=test/script/external
127test262.dir=${test.external.dir}/test262
128test262.suite.dir=${test262.dir}/test/suite
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400129testjfx.dir=${test.script.dir}/jfx
Athijegannathan Sundararajan662abf12013-12-12 19:02:43 +0530130testmarkdown.dir=${test.script.dir}/markdown
Jim Laskey98762d62012-12-21 16:36:24 -0400131
132test-sys-prop.test.dir=${test.dir}
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530133test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400134test-sys-prop.test262.suite.dir=${test262.suite.dir}
135test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
136test-sys-prop.test.basic.dir=${test.basic.dir}
137
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530138test-sys-prop-no-security.test.dir=${test.dir}
139test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir}
140
Jim Laskey98762d62012-12-21 16:36:24 -0400141# framework root for our script tests
142test-sys-prop.test.js.framework=${test.script.dir}/assert.js
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530143test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js
Jim Laskey98762d62012-12-21 16:36:24 -0400144
145# Control the verbosity of ParserTest
146test-sys-prop.parsertest.verbose=false
147
148# turn on/off scripting mode for parser tests
149test-sys-prop.parsertest.scripting=true
150
151# turn on/off test262 scripts for parser tests
152test-sys-prop.parsertest.test262=false
153
154# Control the verbosity of the CompilerTest
155test-sys-prop.compilertest.verbose=false
156
157# turn on/off scripting mode for compiler tests
158test-sys-prop.compilertest.scripting=true
159
160# turn on/off test262 scripts for compiler tests
161test-sys-prop.compilertest.test262=false
162
163# test directory to be excluded.
164test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
165
166# run everything that's js in here, without checking file headers for test annotations
167test-sys-prop.test.js.unchecked.dir=${test262.dir}
168
169# test root for octane
Athijegannathan Sundararajanff982992013-01-09 22:32:40 +0530170octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
Jim Laskey98762d62012-12-21 16:36:24 -0400171
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200172# run octane benchmars in separate processes? (recommended)
Athijegannathan Sundararajana8b9e9a2013-01-11 18:26:18 +0530173octane-test-sys-prop.separate.process=true
174
Jim Laskey98762d62012-12-21 16:36:24 -0400175# framework root for octane
176octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
177
Jim Laskey98762d62012-12-21 16:36:24 -0400178# test root for sunspider
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100179sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0.2/
Jim Laskey98762d62012-12-21 16:36:24 -0400180
181# framework root for sunspider
182sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
183
184# list of tests to be excluded
185sunspider-test-sys-prop.test.js.exclude.list=
186
187# execute our script tests in shared nashorn context or not?
188test-sys-prop.test.js.shared.context=false
189
190# execute test262 tests in shared nashorn context or not?
191test262-test-sys-prop.test.js.shared.context=true
192
193# test262 test root
194test262-test-sys-prop.test.js.roots=${test262.suite.dir}
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200195
Jim Laskey98762d62012-12-21 16:36:24 -0400196# test262 enable/disable strict mode tests
197test262-test-sys-prop.test.js.enable.strict.mode=true
198
199# file containing test262 tests to be excluded
200# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
201
202# list of test262 test dirs to be excluded
203test262-test-sys-prop.test.js.exclude.dir=\
Athijegannathan Sundararajan135319a2013-06-17 13:56:05 +0530204 ${test262.suite.dir}/intl402/ \
205 ${test262.suite.dir}/bestPractice/
Jim Laskey98762d62012-12-21 16:36:24 -0400206
Attila Szegedi52d25112013-05-08 16:48:33 +0200207test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
208
Jim Laskey98762d62012-12-21 16:36:24 -0400209# test262 test frameworks
210test262-test-sys-prop.test.js.framework=\
Hannes Wallnöfer5c683d12014-03-12 11:26:00 +0100211 --class-cache-size=10 \
Athijegannathan Sundararajan0a7fda82013-07-08 16:33:50 +0530212 --no-java \
213 --no-typed-arrays \
Jim Laskey98762d62012-12-21 16:36:24 -0400214 -timezone=PST \
215 ${test.script.dir}/test262.js \
216 ${test262.dir}/test/harness/framework.js \
217 ${test262.dir}/test/harness/sta.js
218
Athijegannathan Sundararajan662abf12013-12-12 19:02:43 +0530219# testmarkdown test root
220testmarkdown-test-sys-prop.test.js.roots=${testmarkdown.dir}
221
222# execute testmarkdown tests in shared nashorn context or not?
223testmarkdown-test-sys-prop.test.js.shared.context=false
224
225# framework root for markdown script tests
226testmarkdown-test-sys-prop.test.js.framework=\
227 ${test.script.dir}${file.separator}markdown.js
228
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400229# testjfx test root
230testjfx-test-sys-prop.test.js.roots=${testjfx.dir}
231
232# execute testjfx tests in shared nashorn context or not?
233testjfx-test-sys-prop.test.js.shared.context=false
234
235# framework root for our script tests
236testjfx-test-sys-prop.test.js.framework=\
237 -fx \
238 ${test.script.dir}${file.separator}jfx.js
239
240file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
241file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar
242file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar
243file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
244testjfx.run.test.classpath=\
245 ${file.reference.jemmyfx.jar}${path.separator}\
246 ${file.reference.jemmycore.jar}${path.separator}\
247 ${file.reference.jemmyawtinput.jar}${path.separator}\
248 ${file.reference.testng.jar}${path.separator}\
249 ${nashorn.internal.tests.jar}${path.separator}\
Konstantin Shefovf78f47b2013-11-05 13:09:40 +0400250 ${nashorn.api.tests.jar}
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400251
252# testjfx VM options for script tests with @fork option
253testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
254
Jim Laskey98762d62012-12-21 16:36:24 -0400255run.test.classpath=\
256 ${file.reference.testng.jar}:\
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530257 ${nashorn.internal.tests.jar}:\
258 ${nashorn.api.tests.jar}
259
Jim Laskey98762d62012-12-21 16:36:24 -0400260src.dir=src
261test.src.dir=test/src
262
Hannes Wallnöfer3d49dcd2013-09-19 15:39:01 +0200263# -Xmx is used for all tests, -Xms only for octane benchmark
Sergey Lugovoyc1d46ac2014-05-22 11:12:29 +0200264run.test.xmx=2G
Athijegannathan Sundararajancef1f6c2013-01-18 17:55:04 +0530265run.test.xms=2G
266
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200267# uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames,
268# or everything will as of the now drown in lambda forms and be cut off.
269#
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100270#jfr.args=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath="test_suite.jfr",stackdepth=1024 \
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200271
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100272jfr.args=
273
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530274run.test.user.language=tr
275run.test.user.country=TR
276
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100277run.test.jvmargs.common=\
278 -server \
279 -Dfile.encoding=UTF-8 \
280 -Duser.language=${run.test.user.language} \
281 -Duser.country=${run.test.user.country} \
Attila Szegedif4c68a92014-06-20 12:25:00 +0200282 -Dnashorn.typeInfo.cacheDir=${build.dir}${file.separator}test${file.separator}type_info_cache \
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100283 ${jfr.args} \
284 -XX:+HeapDumpOnOutOfMemoryError
Athijegannathan Sundararajan8ee74682013-08-09 20:48:44 +0530285
Athijegannathan Sundararajan8ee74682013-08-09 20:48:44 +0530286# turn on assertions for tests
Marcus Lagergrenede81f42014-06-17 11:37:03 +0200287run.test.jvmargs.main=${run.test.jvmargs.common} -ea
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530288
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200289# extra jvmargs that might be useful for debugging
290#
291# -XX:+UnlockDiagnosticVMOptions
292#
293# turn off compressed class pointers in metaspace
294# -XX:-UseCompressedKlassPointers
295#
296# dump the heap after every GC
297# -XX:+PrintHeapAtGC
298#
299# manually set a metaspace size for class data
300# -XX:ClassMetaspaceSize=300M
301#
302# print out methods compiled
303# -XX:+PrintCompilation
304#
305# print all compiled nmethods with oopmaps and lots of other info
306# -XX:+PrintNMethods
Jim Laskey98762d62012-12-21 16:36:24 -0400307
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200308# Use best known performance options for octane
Marcus Lagergrenede81f42014-06-17 11:37:03 +0200309run.test.jvmargs.octane.main=${run.test.jvmargs.common} -XX:+UnlockDiagnosticVMOptions -XX:+UseNewCode -XX:TypeProfileLevel=222
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200310
311# Security manager args - make sure that we run with the nashorn.policy that the build creates
Athijegannathan Sundararajanbe135d22013-10-04 16:21:29 +0530312run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
Jim Laskey98762d62012-12-21 16:36:24 -0400313
Athijegannathan Sundararajan010a7702013-07-26 20:10:47 +0530314# VM options for script tests with @fork option
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530315test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
Athijegannathan Sundararajan010a7702013-07-26 20:10:47 +0530316
Jim Laskey98762d62012-12-21 16:36:24 -0400317# path of rhino.jar for benchmarks
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200318rhino.dir=
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200319rhino.jar=${rhino.dir}/js.jar
Jim Laskey98762d62012-12-21 16:36:24 -0400320
321v8.shell=d8
322
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200323# How many iterations should 'ant octane' run for each
324# benchmark
325octane.iterations=25
326
327# List of octane tests to run, as properties prefixed with
328# "octane.benchmark." mapping to the benchmark name in
329# the test harness
330#
331# Octane tests that are disabled should have their entire line
332# commented out Tests may be disabled for functionality reasons when
333# they have bugs or when the runtime doesn't handle them (yet)
334octane.benchmark.box2d=box2d
335#octane.benchmark.code-load=code-load
336octane.benchmark.crypto=crypto
337octane.benchmark.deltablue=deltablue
338octane.benchmark.earley-boyer=earley-boyer
339octane.benchmark.gbemu=gbemu
340octane.benchmark.navier-stokes=navier-stokes
341octane.benchmark.mandreel=mandreel
342octane.benchmark.pdfjs=pdfjs
343octane.benchmark.raytrace=raytrace
344octane.benchmark.regexp=regexp
345octane.benchmark.richards=richards
346octane.benchmark.splay=splay
347#octane.benchmark.typescript=typescript
348#octane.benchmark.zlib=zlib
349
Jim Laskey98762d62012-12-21 16:36:24 -0400350#path to rhino jar file
351octaneperf-sys-prop.rhino.jar=${rhino.jar}
352
353#timeout for performance tests in minutes
354octaneperf-sys-prop.timeout.value=10
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100355
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200356#how many iterations to run sunspider after warmup
357sunspider.iterations=3000
358
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200359#################
360# code coverage #
361#################
362
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200363#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100364make.code.coverage=false
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200365
366#type of codecoverage; one of static or dynamic. Now only dynamic is supported
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100367jcov=dynamic
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200368
369#naming of CC results
370#NB directory specified in the cc.dir will be cleaned up!!!
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100371cc.dir=${basedir}/../Codecoverage_Nashorn
Pavel Stepanove4b82732013-03-19 11:03:24 -0300372cc.result.file.name=CC_${jcov}_nashorn.xml
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200373
374#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100375jcov2.lib.dir=${basedir}/../jcov2/lib
376jcov.jar=${jcov2.lib.dir}/jcov.jar
377cc.include=jdk\.nashorn\.*
378cc.exclude=jdk\.nashorn\.internal\.scripts\.*
Pavel Stepanove4b82732013-03-19 11:03:24 -0300379cc.dynamic.genereate.template=true
380cc.template=${cc.dir}/CC_template.xml
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100381cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}