blob: d3730d8cdd6cbaf4ff2a1f6a77b09e89ab2bb775 [file] [log] [blame]
Jim Laskey98762d62012-12-21 16:36:24 -04001#
Michael Hauptdb8a9332015-06-02 14:35:03 +02002# Copyright (c) 2010, 2015, 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.
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +05304#
Jim Laskey98762d62012-12-21 16:36:24 -04005# 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.
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +05308#
Jim Laskey98762d62012-12-21 16:36:24 -04009# 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).
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +053014#
Jim Laskey98762d62012-12-21 16:36:24 -040015# 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.
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +053018#
Jim Laskey98762d62012-12-21 16:36:24 -040019# 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 Sundararajanf73717b2014-12-16 14:06:32 +053027jdk.asm.src.dir=../jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm
Athijegannathan Sundararajanb501e8f2013-01-08 08:51:00 +053028
Athijegannathan Sundararajand37f9f42015-08-13 19:07:27 +053029# location of JDK embedded jline sources
30jdk.jline.src.dir=../jdk/src/jdk.internal.le/share/classes
31
Jim Laskey98762d62012-12-21 16:36:24 -040032# source and target levels
33build.compiler=modern
Athijegannathan Sundararajanfa78f332014-08-19 18:14:45 +053034javac.source=1.8
35javac.target=1.8
Jim Laskey98762d62012-12-21 16:36:24 -040036
37# nashorn version information
38nashorn.version=0.1
39nashorn.fullversion=0.1
40nashorn.product.name=Oracle Nashorn
41
42# This directory is removed when the project is cleaned:
43build.dir=build
44build.classes.dir=${build.dir}/classes
45build.zip=${build.dir}/nashorn.zip
46build.gzip=${build.dir}/nashorn.tar.gz
47
48# nashorn Shell tool
49nashorn.shell.tool=jdk.nashorn.tools.Shell
50
51# nasgen tool
52nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
53
54# parallel test runner tool
55parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
56
57# test classes directory
58build.test.classes.dir=${build.dir}/test/classes
Marcus Lagergrena6e90a42014-05-27 21:25:07 +020059
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +053060# nashorn test jar - internal tests jar and api tests jar
61nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
62nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
63
Jim Laskey98762d62012-12-21 16:36:24 -040064# test results directory
65build.test.results.dir=${build.dir}/test/reports
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +053066build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports
Attila Szegedi9fb4c3a2014-05-28 16:53:43 +020067build.nooptimistic.test.results.dir=${build.dir}/test/nooptimistic/reports
Jim Laskey98762d62012-12-21 16:36:24 -040068
69# This directory is removed when the project is cleaned:
70dist.dir=dist
71dist.jar=${dist.dir}/nashorn.jar
72dist.javadoc.dir=${dist.dir}/javadoc
73
James Laskey53d40472013-04-02 11:37:22 -030074# nashorn javafx shell
75fxshell.tool = jdk.nashorn.tools.FXShell
76fxshell.classes.dir = ${build.dir}/fxshell/classes
77fxshell.dir = tools/fxshell
78fxshell.jar = ${dist.dir}/nashornfx.jar
79
Athijegannathan Sundararajan0b0eece2013-11-25 18:40:02 +053080# configuration for java flight recorder
81run.test.jvmargs.jfr=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath=${build.dir},stackdepth=128
82
Michael Hauptdb8a9332015-06-02 14:35:03 +020083# test library location
84test.lib=${basedir}${file.separator}test${file.separator}lib
85
Jim Laskey98762d62012-12-21 16:36:24 -040086# jars refererred
Michael Hauptdb8a9332015-06-02 14:35:03 +020087file.reference.testng.jar=${test.lib}${file.separator}testng.jar
Jim Laskey98762d62012-12-21 16:36:24 -040088
89# Set testng verbose level
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +053090# From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed)
91# Actually, this is a lie: you can specify -1 and this will put TestNG in
Jim Laskey98762d62012-12-21 16:36:24 -040092# debug mode (no longer slicing off stack traces and all)."
93
94testng.verbose=2
95
96# TestNG listeners - we want to replace TestNG's own JUnit
97# reporter, but want everything else provided by default
98# Unfortunately, we've to clone the other default reporters here.
99
100testng.listeners=\
101 org.testng.reporters.SuiteHTMLReporter, \
Athijegannathan Sundararajan993430a2013-05-29 15:41:07 +0530102 org.testng.reporters.TestHTMLReporter, \
Jim Laskey98762d62012-12-21 16:36:24 -0400103 org.testng.reporters.jq.Main, \
104 org.testng.reporters.FailedReporter, \
105 org.testng.reporters.XMLReporter \
106 org.testng.reporters.EmailableReporter, \
107 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
108
Jim Laskey98762d62012-12-21 16:36:24 -0400109javac.debug=true
110javac.encoding=ascii
111javac.classpath=\
Attila Szegedi82f8cef2013-02-14 13:22:26 +0100112 ${build.classes.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400113javac.test.classpath=\
Michael Haupt538f0b42015-05-13 15:41:46 +0200114 ${build.classes.dir}${path.separator}\
115 ${build.test.classes.dir}${path.separator}\
Jim Laskey98762d62012-12-21 16:36:24 -0400116 ${file.reference.testng.jar}
117
Athijegannathan Sundararajand37f9f42015-08-13 19:07:27 +0530118meta.inf.dir=${nashorn.module.src.dir}/META-INF
Jim Laskey98762d62012-12-21 16:36:24 -0400119
120run.classpath=\
121 ${build.classes.dir}
122
123# test scripts to run
124test.dir=test
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530125test.nosecurity.dir=test/script/nosecurity
Jim Laskey98762d62012-12-21 16:36:24 -0400126test.script.dir=test/script
127test.basic.dir=test/script/basic
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530128test.maptests.dir=test/script/maptests
Jim Laskey98762d62012-12-21 16:36:24 -0400129test.error.dir=test/script/error
130test.sandbox.dir=test/script/sandbox
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530131test.trusted.dir=test/script/trusted
Jim Laskey98762d62012-12-21 16:36:24 -0400132test.external.dir=test/script/external
133test262.dir=${test.external.dir}/test262
134test262.suite.dir=${test262.dir}/test/suite
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400135testjfx.dir=${test.script.dir}/jfx
Athijegannathan Sundararajan662abf12013-12-12 19:02:43 +0530136testmarkdown.dir=${test.script.dir}/markdown
Jim Laskey98762d62012-12-21 16:36:24 -0400137
138test-sys-prop.test.dir=${test.dir}
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530139test-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 -0400140test-sys-prop.test262.suite.dir=${test262.suite.dir}
141test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
142test-sys-prop.test.basic.dir=${test.basic.dir}
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530143test-sys-prop.test.external.dir=${test.external.dir}
144test-sys-prop.test.maptests.dir=${test.maptests.dir}
145test-sys-prop.test.sandbox.dir=${test.sandbox.dir}
146test-sys-prop.test.trusted.dir=${test.trusted.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400147
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530148test-sys-prop-no-security.test.dir=${test.dir}
149test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir}
150
Jim Laskey98762d62012-12-21 16:36:24 -0400151# framework root for our script tests
152test-sys-prop.test.js.framework=${test.script.dir}/assert.js
Athijegannathan Sundararajandb62a412014-05-20 08:32:09 +0530153test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js
Jim Laskey98762d62012-12-21 16:36:24 -0400154
155# Control the verbosity of ParserTest
156test-sys-prop.parsertest.verbose=false
157
158# turn on/off scripting mode for parser tests
159test-sys-prop.parsertest.scripting=true
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530160test-sys-prop.parserapitest.verbose=false
Jim Laskey98762d62012-12-21 16:36:24 -0400161
162# turn on/off test262 scripts for parser tests
163test-sys-prop.parsertest.test262=false
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530164test-sys-prop.parserapitest.test262=false
Jim Laskey98762d62012-12-21 16:36:24 -0400165
166# Control the verbosity of the CompilerTest
167test-sys-prop.compilertest.verbose=false
168
169# turn on/off scripting mode for compiler tests
170test-sys-prop.compilertest.scripting=true
171
172# turn on/off test262 scripts for compiler tests
173test-sys-prop.compilertest.test262=false
174
175# test directory to be excluded.
176test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
177
178# run everything that's js in here, without checking file headers for test annotations
179test-sys-prop.test.js.unchecked.dir=${test262.dir}
180
181# test root for octane
Athijegannathan Sundararajanff982992013-01-09 22:32:40 +0530182octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
Jim Laskey98762d62012-12-21 16:36:24 -0400183
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200184# run octane benchmars in separate processes? (recommended)
Athijegannathan Sundararajana8b9e9a2013-01-11 18:26:18 +0530185octane-test-sys-prop.separate.process=true
186
Jim Laskey98762d62012-12-21 16:36:24 -0400187# framework root for octane
188octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
189
Jim Laskey98762d62012-12-21 16:36:24 -0400190# test root for sunspider
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100191sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0.2/
Jim Laskey98762d62012-12-21 16:36:24 -0400192
193# framework root for sunspider
194sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
195
196# list of tests to be excluded
197sunspider-test-sys-prop.test.js.exclude.list=
198
199# execute our script tests in shared nashorn context or not?
200test-sys-prop.test.js.shared.context=false
201
202# execute test262 tests in shared nashorn context or not?
203test262-test-sys-prop.test.js.shared.context=true
204
205# test262 test root
206test262-test-sys-prop.test.js.roots=${test262.suite.dir}
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200207
Jim Laskey98762d62012-12-21 16:36:24 -0400208# test262 enable/disable strict mode tests
209test262-test-sys-prop.test.js.enable.strict.mode=true
210
211# file containing test262 tests to be excluded
212# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
213
214# list of test262 test dirs to be excluded
215test262-test-sys-prop.test.js.exclude.dir=\
Athijegannathan Sundararajan135319a2013-06-17 13:56:05 +0530216 ${test262.suite.dir}/intl402/ \
Athijegannathan Sundararajan3b73e952014-08-08 19:07:17 +0530217 ${test262.suite.dir}/bestPractice/
Jim Laskey98762d62012-12-21 16:36:24 -0400218
Attila Szegedi52d25112013-05-08 16:48:33 +0200219test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
220
Jim Laskey98762d62012-12-21 16:36:24 -0400221# test262 test frameworks
222test262-test-sys-prop.test.js.framework=\
Hannes Wallnöfer5c683d12014-03-12 11:26:00 +0100223 --class-cache-size=10 \
Athijegannathan Sundararajan0a7fda82013-07-08 16:33:50 +0530224 --no-java \
225 --no-typed-arrays \
Jim Laskey98762d62012-12-21 16:36:24 -0400226 -timezone=PST \
227 ${test.script.dir}/test262.js \
228 ${test262.dir}/test/harness/framework.js \
229 ${test262.dir}/test/harness/sta.js
230
Athijegannathan Sundararajan662abf12013-12-12 19:02:43 +0530231# testmarkdown test root
Hannes Wallnöfera8ece5c2014-08-08 12:50:46 +0200232testmarkdown-test-sys-prop.test.js.roots=${testmarkdown.dir}
Athijegannathan Sundararajan662abf12013-12-12 19:02:43 +0530233
234# execute testmarkdown tests in shared nashorn context or not?
235testmarkdown-test-sys-prop.test.js.shared.context=false
236
237# framework root for markdown script tests
238testmarkdown-test-sys-prop.test.js.framework=\
239 ${test.script.dir}${file.separator}markdown.js
240
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400241# testjfx test root
Hannes Wallnöfera8ece5c2014-08-08 12:50:46 +0200242testjfx-test-sys-prop.test.js.roots=${testjfx.dir}
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400243
244# execute testjfx tests in shared nashorn context or not?
245testjfx-test-sys-prop.test.js.shared.context=false
246
247# framework root for our script tests
248testjfx-test-sys-prop.test.js.framework=\
249 -fx \
250 ${test.script.dir}${file.separator}jfx.js
251
Michael Hauptdb8a9332015-06-02 14:35:03 +0200252file.reference.jemmyfx.jar=${test.lib}${file.separator}JemmyFX.jar
253file.reference.jemmycore.jar=${test.lib}${file.separator}JemmyCore.jar
254file.reference.jemmyawtinput.jar=${test.lib}${file.separator}JemmyAWTInput.jar
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400255file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
256testjfx.run.test.classpath=\
257 ${file.reference.jemmyfx.jar}${path.separator}\
258 ${file.reference.jemmycore.jar}${path.separator}\
259 ${file.reference.jemmyawtinput.jar}${path.separator}\
260 ${file.reference.testng.jar}${path.separator}\
261 ${nashorn.internal.tests.jar}${path.separator}\
Konstantin Shefovf78f47b2013-11-05 13:09:40 +0400262 ${nashorn.api.tests.jar}
Konstantin Shefov7adddc62013-10-21 13:31:03 +0400263
264# testjfx VM options for script tests with @fork option
265testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
266
Jim Laskey98762d62012-12-21 16:36:24 -0400267run.test.classpath=\
Michael Haupt538f0b42015-05-13 15:41:46 +0200268 ${file.reference.testng.jar}${path.separator}\
269 ${nashorn.internal.tests.jar}${path.separator}\
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530270 ${nashorn.api.tests.jar}
271
Athijegannathan Sundararajand37f9f42015-08-13 19:07:27 +0530272nashorn.module.src.dir=src/jdk.scripting.nashorn/share/classes
273nashorn.shell.module.src.dir=src/jdk.scripting.nashorn.shell/share/classes
274
275src.dir=${nashorn.module.src.dir}${path.separator}\
276 ${nashorn.shell.module.src.dir}${path.separator}\
277 ${jdk.jline.src.dir}
278
Jim Laskey98762d62012-12-21 16:36:24 -0400279test.src.dir=test/src
280
Hannes Wallnöfer3d49dcd2013-09-19 15:39:01 +0200281# -Xmx is used for all tests, -Xms only for octane benchmark
Sergey Lugovoyc1d46ac2014-05-22 11:12:29 +0200282run.test.xmx=2G
Athijegannathan Sundararajancef1f6c2013-01-18 17:55:04 +0530283run.test.xms=2G
284
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200285# uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames,
286# or everything will as of the now drown in lambda forms and be cut off.
287#
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100288#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 +0200289
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100290jfr.args=
291
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530292run.test.user.language=tr
293run.test.user.country=TR
294
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100295run.test.jvmargs.common=\
296 -server \
297 -Dfile.encoding=UTF-8 \
298 -Duser.language=${run.test.user.language} \
299 -Duser.country=${run.test.user.country} \
Attila Szegedif4c68a92014-06-20 12:25:00 +0200300 -Dnashorn.typeInfo.cacheDir=${build.dir}${file.separator}test${file.separator}type_info_cache \
Attila Szegedie9e7dd22014-02-26 13:17:57 +0100301 ${jfr.args} \
302 -XX:+HeapDumpOnOutOfMemoryError
Athijegannathan Sundararajan8ee74682013-08-09 20:48:44 +0530303
Athijegannathan Sundararajan8ee74682013-08-09 20:48:44 +0530304# turn on assertions for tests
Athijegannathan Sundararajanf42d5e82014-12-05 14:35:00 +0530305run.test.jvmargs.main=${run.test.jvmargs.common} -esa -ea
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530306
Marcus Lagergren8d304982014-10-09 10:19:24 +0200307# Extra jvmargs that might be useful for debugging
308# and performance improvements/monitoring
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200309#
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530310# -XX:+UnlockDiagnosticVMOptions
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200311#
312# turn off compressed class pointers in metaspace
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530313# -XX:-UseCompressedKlassPointers
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200314#
315# dump the heap after every GC
316# -XX:+PrintHeapAtGC
317#
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530318# manually set a metaspace size for class data
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200319# -XX:ClassMetaspaceSize=300M
320#
321# print out methods compiled
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530322# -XX:+PrintCompilation
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200323#
324# print all compiled nmethods with oopmaps and lots of other info
325# -XX:+PrintNMethods
Marcus Lagergren8d304982014-10-09 10:19:24 +0200326#
327# activate the generic "UseNewCode" flag to test whatever functionality
328# lies behind it. This is the preferred way to test a, yet flagless,
329# feature in HotSpot - for example, the uncommon trap placement fix
330# was hidden behind this flag before it became the default
331#
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530332# -XX:+UnlockDiagnosticVMOptions -XX:+UseNewCode
Marcus Lagergren8d304982014-10-09 10:19:24 +0200333#
334# Crank up the type profile level to 222, which has some warmup
335# penalties, but produces much better code for JavaScript, where better
336# and more intrusive type profiling is required to get rid of
337# a large amount of unnecessary guard code, that could not otherwise
338# be eliminated
339#
340# -XX:TypeProfileLevel=222
341#
Jim Laskey98762d62012-12-21 16:36:24 -0400342
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200343# Use best known performance options for octane
Marcus Lagergren8d304982014-10-09 10:19:24 +0200344run.test.jvmargs.octane.main=${run.test.jvmargs.common} -XX:TypeProfileLevel=222
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200345
346# Security manager args - make sure that we run with the nashorn.policy that the build creates
Lev Priimaa27f5c02014-07-18 16:53:17 +0530347run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${build.dir}/nashorn.policy
Jim Laskey98762d62012-12-21 16:36:24 -0400348
Athijegannathan Sundararajan010a7702013-07-26 20:10:47 +0530349# VM options for script tests with @fork option
Athijegannathan Sundararajan3dd99842014-02-06 17:44:37 +0530350test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
Hannes Wallnöferb3fa2312015-05-05 14:23:43 +0200351# VM options for no-security script tests with @fork option - same as above but without jvmsecurityargs
352test-sys-prop-no-security.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${run.test.classpath}
Athijegannathan Sundararajan010a7702013-07-26 20:10:47 +0530353
Jim Laskey98762d62012-12-21 16:36:24 -0400354# path of rhino.jar for benchmarks
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200355rhino.dir=
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200356rhino.jar=${rhino.dir}/js.jar
Jim Laskey98762d62012-12-21 16:36:24 -0400357
358v8.shell=d8
359
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200360# How many iterations should 'ant octane' run for each
361# benchmark
362octane.iterations=25
363
364# List of octane tests to run, as properties prefixed with
Athijegannathan Sundararajan0ed9eb82015-03-09 20:14:10 +0530365# "octane.benchmark." mapping to the benchmark name in
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200366# the test harness
367#
368# Octane tests that are disabled should have their entire line
369# commented out Tests may be disabled for functionality reasons when
370# they have bugs or when the runtime doesn't handle them (yet)
371octane.benchmark.box2d=box2d
372#octane.benchmark.code-load=code-load
373octane.benchmark.crypto=crypto
374octane.benchmark.deltablue=deltablue
375octane.benchmark.earley-boyer=earley-boyer
376octane.benchmark.gbemu=gbemu
377octane.benchmark.navier-stokes=navier-stokes
378octane.benchmark.mandreel=mandreel
379octane.benchmark.pdfjs=pdfjs
380octane.benchmark.raytrace=raytrace
381octane.benchmark.regexp=regexp
382octane.benchmark.richards=richards
383octane.benchmark.splay=splay
384#octane.benchmark.typescript=typescript
385#octane.benchmark.zlib=zlib
386
Jim Laskey98762d62012-12-21 16:36:24 -0400387#path to rhino jar file
388octaneperf-sys-prop.rhino.jar=${rhino.jar}
389
390#timeout for performance tests in minutes
391octaneperf-sys-prop.timeout.value=10
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100392
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200393#how many iterations to run sunspider after warmup
394sunspider.iterations=3000
395
Marcus Lagergrena6e90a42014-05-27 21:25:07 +0200396#################
397# code coverage #
398#################
399
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200400#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100401make.code.coverage=false
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200402
403#type of codecoverage; one of static or dynamic. Now only dynamic is supported
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100404jcov=dynamic
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200405
406#naming of CC results
407#NB directory specified in the cc.dir will be cleaned up!!!
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100408cc.dir=${basedir}/../Codecoverage_Nashorn
Pavel Stepanove4b82732013-03-19 11:03:24 -0300409cc.result.file.name=CC_${jcov}_nashorn.xml
Marcus Lagergrend4287c22014-05-28 13:58:46 +0200410
411#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100412jcov2.lib.dir=${basedir}/../jcov2/lib
413jcov.jar=${jcov2.lib.dir}/jcov.jar
414cc.include=jdk\.nashorn\.*
415cc.exclude=jdk\.nashorn\.internal\.scripts\.*
Pavel Stepanove4b82732013-03-19 11:03:24 -0300416cc.dynamic.genereate.template=true
417cc.template=${cc.dir}/CC_template.xml
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100418cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}