blob: 57c998665756ebfdaf404eba05d37fbe42fb64f6 [file] [log] [blame]
Jim Laskey98762d62012-12-21 16:36:24 -04001#
James Laskey311f43d2013-01-04 09:58:33 -04002# Copyright (c) 2010, 2013, 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
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +053056# 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
Jim Laskey98762d62012-12-21 16:36:24 -040060# 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
James Laskey53d40472013-04-02 11:37:22 -030068# nashorn javafx shell
69fxshell.tool = jdk.nashorn.tools.FXShell
70fxshell.classes.dir = ${build.dir}/fxshell/classes
71fxshell.dir = tools/fxshell
72fxshell.jar = ${dist.dir}/nashornfx.jar
73
Jim Laskey98762d62012-12-21 16:36:24 -040074# jars refererred
75file.reference.testng.jar=test/lib/testng.jar
76
77# Set testng verbose level
78# From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed)
79# Actually, this is a lie: you can specify -1 and this will put TestNG in
80# debug mode (no longer slicing off stack traces and all)."
81
82testng.verbose=2
83
84# TestNG listeners - we want to replace TestNG's own JUnit
85# reporter, but want everything else provided by default
86# Unfortunately, we've to clone the other default reporters here.
87
88testng.listeners=\
89 org.testng.reporters.SuiteHTMLReporter, \
Athijegannathan Sundararajan993430a2013-05-29 15:41:07 +053090 org.testng.reporters.TestHTMLReporter, \
Jim Laskey98762d62012-12-21 16:36:24 -040091 org.testng.reporters.jq.Main, \
92 org.testng.reporters.FailedReporter, \
93 org.testng.reporters.XMLReporter \
94 org.testng.reporters.EmailableReporter, \
95 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
96
Jim Laskey98762d62012-12-21 16:36:24 -040097javac.debug=true
98javac.encoding=ascii
99javac.classpath=\
Attila Szegedi82f8cef2013-02-14 13:22:26 +0100100 ${build.classes.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400101javac.test.classpath=\
102 ${build.classes.dir}:\
103 ${build.test.classes.dir}:\
104 ${file.reference.testng.jar}
105
106meta.inf.dir=${src.dir}/META-INF
107
108run.classpath=\
109 ${build.classes.dir}
110
111# test scripts to run
112test.dir=test
113test.script.dir=test/script
114test.basic.dir=test/script/basic
115test.error.dir=test/script/error
116test.sandbox.dir=test/script/sandbox
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530117test.trusted.dir=test/script/trusted
Jim Laskey98762d62012-12-21 16:36:24 -0400118test.external.dir=test/script/external
119test262.dir=${test.external.dir}/test262
120test262.suite.dir=${test262.dir}/test/suite
121
122test-sys-prop.test.dir=${test.dir}
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530123test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
Jim Laskey98762d62012-12-21 16:36:24 -0400124test-sys-prop.test262.suite.dir=${test262.suite.dir}
125test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
126test-sys-prop.test.basic.dir=${test.basic.dir}
127
128# framework root for our script tests
129test-sys-prop.test.js.framework=${test.script.dir}/assert.js
130
131# Control the verbosity of ParserTest
132test-sys-prop.parsertest.verbose=false
133
134# turn on/off scripting mode for parser tests
135test-sys-prop.parsertest.scripting=true
136
137# turn on/off test262 scripts for parser tests
138test-sys-prop.parsertest.test262=false
139
140# Control the verbosity of the CompilerTest
141test-sys-prop.compilertest.verbose=false
142
143# turn on/off scripting mode for compiler tests
144test-sys-prop.compilertest.scripting=true
145
146# turn on/off test262 scripts for compiler tests
147test-sys-prop.compilertest.test262=false
148
149# test directory to be excluded.
150test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
151
152# run everything that's js in here, without checking file headers for test annotations
153test-sys-prop.test.js.unchecked.dir=${test262.dir}
154
155# test root for octane
Athijegannathan Sundararajanff982992013-01-09 22:32:40 +0530156octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
Jim Laskey98762d62012-12-21 16:36:24 -0400157
Athijegannathan Sundararajana8b9e9a2013-01-11 18:26:18 +0530158# run octane benchmars in separate processes?
159octane-test-sys-prop.separate.process=true
160
Jim Laskey98762d62012-12-21 16:36:24 -0400161# framework root for octane
162octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
163
164# list of tests to be excluded
Athijegannathan Sundararajana8b9e9a2013-01-11 18:26:18 +0530165# mandreel excluded due to OOM
Athijegannathan Sundararajan643a6b82013-01-10 19:03:25 +0530166octane-test-sys-prop.test.js.exclude.list=\
167 base.js \
Athijegannathan Sundararajana8b9e9a2013-01-11 18:26:18 +0530168 run.js \
169 mandreel.js
Jim Laskey98762d62012-12-21 16:36:24 -0400170
171# test root for sunspider
Athijegannathan Sundararajanff982992013-01-09 22:32:40 +0530172sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
Jim Laskey98762d62012-12-21 16:36:24 -0400173
174# framework root for sunspider
175sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
176
177# list of tests to be excluded
178sunspider-test-sys-prop.test.js.exclude.list=
179
180# execute our script tests in shared nashorn context or not?
181test-sys-prop.test.js.shared.context=false
182
183# execute test262 tests in shared nashorn context or not?
184test262-test-sys-prop.test.js.shared.context=true
185
186# test262 test root
187test262-test-sys-prop.test.js.roots=${test262.suite.dir}
188# test262 enable/disable strict mode tests
189test262-test-sys-prop.test.js.enable.strict.mode=true
190
191# file containing test262 tests to be excluded
192# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
193
194# list of test262 test dirs to be excluded
195test262-test-sys-prop.test.js.exclude.dir=\
Athijegannathan Sundararajan135319a2013-06-17 13:56:05 +0530196 ${test262.suite.dir}/intl402/ \
197 ${test262.suite.dir}/bestPractice/
Jim Laskey98762d62012-12-21 16:36:24 -0400198
Attila Szegedi52d25112013-05-08 16:48:33 +0200199test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
200
Jim Laskey98762d62012-12-21 16:36:24 -0400201# test262 test frameworks
202test262-test-sys-prop.test.js.framework=\
Athijegannathan Sundararajan0a7fda82013-07-08 16:33:50 +0530203 --class-cache-size=0 \
204 --no-java \
205 --no-typed-arrays \
Jim Laskey98762d62012-12-21 16:36:24 -0400206 -timezone=PST \
207 ${test.script.dir}/test262.js \
208 ${test262.dir}/test/harness/framework.js \
209 ${test262.dir}/test/harness/sta.js
210
211run.test.classpath=\
212 ${file.reference.testng.jar}:\
Athijegannathan Sundararajanb247ddf2013-02-07 17:17:29 +0530213 ${nashorn.internal.tests.jar}:\
214 ${nashorn.api.tests.jar}
215
Jim Laskey98762d62012-12-21 16:36:24 -0400216src.dir=src
217test.src.dir=test/src
218
Athijegannathan Sundararajancef1f6c2013-01-18 17:55:04 +0530219run.test.xmx=3G
220run.test.xms=2G
221
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530222run.test.user.language=tr
223run.test.user.country=TR
224
Jim Laskey98762d62012-12-21 16:36:24 -0400225# -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
Athijegannathan Sundararajan5bf7dac2013-05-24 23:27:52 +0530226run.test.jvmargs.main=-server -Xmx${run.test.xmx} -XX:+TieredCompilation -ea -Dfile.encoding=UTF-8 -Duser.language=${run.test.user.language} -Duser.country=${run.test.user.country}
227
Jim Laskey98762d62012-12-21 16:36:24 -0400228#-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
Attila Szegedi71889612013-03-23 00:58:39 +0100229run.test.jvmargs.octane.main=-Xms${run.test.xms} ${run.test.jvmargs.main}
Jim Laskey98762d62012-12-21 16:36:24 -0400230
Athijegannathan Sundararajan1e1537c2013-02-11 21:26:06 +0530231run.test.jvmsecurityargs=-Xverify:all -Djava.security.properties=${basedir}/make/java.security.override -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
Jim Laskey98762d62012-12-21 16:36:24 -0400232
Athijegannathan Sundararajan010a7702013-07-26 20:10:47 +0530233# VM options for script tests with @fork option
234test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} ${run.test.jvmsecurityargs}
235
Jim Laskey98762d62012-12-21 16:36:24 -0400236# path of rhino.jar for benchmarks
237rhino.jar=
238
239v8.shell=d8
240
241#path to rhino jar file
242octaneperf-sys-prop.rhino.jar=${rhino.jar}
243
244#timeout for performance tests in minutes
245octaneperf-sys-prop.timeout.value=10
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100246
247################
248# codecoverage #
249################
250 #enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
251make.code.coverage=false
252 #type of codecoverage; one of static or dynamic. Now only dynamic is supported
253jcov=dynamic
254 #naming of CC results
255 #NB directory specified in the cc.dir will be cleaned up!!!
256cc.dir=${basedir}/../Codecoverage_Nashorn
Pavel Stepanove4b82732013-03-19 11:03:24 -0300257cc.result.file.name=CC_${jcov}_nashorn.xml
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100258 #dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
259jcov2.lib.dir=${basedir}/../jcov2/lib
260jcov.jar=${jcov2.lib.dir}/jcov.jar
261cc.include=jdk\.nashorn\.*
262cc.exclude=jdk\.nashorn\.internal\.scripts\.*
Pavel Stepanove4b82732013-03-19 11:03:24 -0300263cc.dynamic.genereate.template=true
264cc.template=${cc.dir}/CC_template.xml
Eugene Drobitko406f72e2013-02-22 11:27:40 +0100265cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}