project.properties revision 204:04b36c02c0e2
138774Snsouch#
238774Snsouch# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
338774Snsouch# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
438774Snsouch# 
538774Snsouch# This code is free software; you can redistribute it and/or modify it
638774Snsouch# under the terms of the GNU General Public License version 2 only, as
738774Snsouch# published by the Free Software Foundation.
838774Snsouch# 
938774Snsouch# This code is distributed in the hope that it will be useful, but WITHOUT
1038774Snsouch# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1138774Snsouch# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1238774Snsouch# version 2 for more details (a copy is included in the LICENSE file that
1338774Snsouch# accompanied this code).
1438774Snsouch# 
1538774Snsouch# You should have received a copy of the GNU General Public License version
1638774Snsouch# 2 along with this work; if not, write to the Free Software Foundation,
1738774Snsouch# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1838774Snsouch# 
1938774Snsouch# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2038774Snsouch# or visit www.oracle.com if you need additional information or have any
2138774Snsouch# questions.
2238774Snsouch#
2338774Snsouch
2438774Snsouchapplication.title=nashorn
2538774Snsouch
2650477Speter# location of JDK embedded ASM sources
2738774Snsouchjdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm
2838774Snsouch
2938774Snsouch# source and target levels
3038774Snsouchbuild.compiler=modern
3138774Snsouchjavac.source=1.7
32167854Simpjavac.target=1.7
33167854Simp
3438774Snsouch# nashorn version information
35167854Simpnashorn.version=0.1
36167854Simpnashorn.fullversion=0.1
37167854Simpnashorn.product.name=Oracle Nashorn
3838774Snsouch
3942442Snsouch# This directory is removed when the project is cleaned:
4042442Snsouchbuild.dir=build
4138774Snsouchbuild.classes.dir=${build.dir}/classes
4238774Snsouchbuild.zip=${build.dir}/nashorn.zip
43167854Simpbuild.gzip=${build.dir}/nashorn.tar.gz
44167854Simp
45167854Simp# nashorn Shell tool
46167854Simpnashorn.shell.tool=jdk.nashorn.tools.Shell
47167854Simp
48167854Simp# nasgen tool
49167854Simpnasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
50167854Simp
51167854Simp# parallel test runner tool
52167854Simpparallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
53167854Simp
54167854Simp# test classes directory
55167854Simpbuild.test.classes.dir=${build.dir}/test/classes
56167854Simp# nashorn test jar - internal tests jar and api tests jar
57167854Simpnashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
58167854Simpnashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
59167854Simp
60167854Simp# test results directory
61167854Simpbuild.test.results.dir=${build.dir}/test/reports
6238774Snsouch
6338774Snsouch# This directory is removed when the project is cleaned:
64160372Simpdist.dir=dist
65160372Simpdist.jar=${dist.dir}/nashorn.jar
66160372Simpdist.javadoc.dir=${dist.dir}/javadoc
6738774Snsouch
68# 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
74# 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, \
90 org.testng.reporters.jq.Main, \
91 org.testng.reporters.FailedReporter, \
92 org.testng.reporters.XMLReporter \
93 org.testng.reporters.EmailableReporter, \
94 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
95
96javac.debug=true
97javac.encoding=ascii
98javac.classpath=\
99    ${build.classes.dir}
100javac.test.classpath=\
101    ${build.classes.dir}:\
102    ${build.test.classes.dir}:\
103    ${file.reference.testng.jar}
104
105meta.inf.dir=${src.dir}/META-INF
106
107run.classpath=\
108    ${build.classes.dir}
109
110# test scripts to run
111test.dir=test
112test.script.dir=test/script
113test.basic.dir=test/script/basic
114test.error.dir=test/script/error
115test.sandbox.dir=test/script/sandbox
116test.trusted.dir=test/script/trusted
117test.external.dir=test/script/external
118test262.dir=${test.external.dir}/test262
119test262.suite.dir=${test262.dir}/test/suite
120
121test-sys-prop.test.dir=${test.dir}
122test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
123test-sys-prop.test262.suite.dir=${test262.suite.dir}
124test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
125test-sys-prop.test.basic.dir=${test.basic.dir}
126
127# framework root for our script tests
128test-sys-prop.test.js.framework=${test.script.dir}/assert.js
129
130# Control the verbosity of ParserTest
131test-sys-prop.parsertest.verbose=false
132
133# turn on/off scripting mode for parser tests
134test-sys-prop.parsertest.scripting=true
135
136# turn on/off test262 scripts for parser tests
137test-sys-prop.parsertest.test262=false
138
139# Control the verbosity of the CompilerTest
140test-sys-prop.compilertest.verbose=false
141
142# turn on/off scripting mode for compiler tests
143test-sys-prop.compilertest.scripting=true
144
145# turn on/off test262 scripts for compiler tests
146test-sys-prop.compilertest.test262=false
147
148# test directory to be excluded.
149test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
150
151# run everything that's js in here, without checking file headers for test annotations
152test-sys-prop.test.js.unchecked.dir=${test262.dir}
153
154# test root for octane
155octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
156
157# run octane benchmars in separate processes?
158octane-test-sys-prop.separate.process=true
159
160# framework root for octane
161octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
162
163# list of tests to be excluded
164# mandreel excluded due to OOM
165octane-test-sys-prop.test.js.exclude.list=\
166    base.js \
167    run.js  \
168    mandreel.js
169
170# test root for sunspider
171sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
172
173# framework root for sunspider
174sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
175
176# list of tests to be excluded
177sunspider-test-sys-prop.test.js.exclude.list=
178
179# execute our script tests in shared nashorn context or not?
180test-sys-prop.test.js.shared.context=false
181
182# execute test262 tests in shared nashorn context or not?
183test262-test-sys-prop.test.js.shared.context=true
184
185# test262 test root
186test262-test-sys-prop.test.js.roots=${test262.suite.dir}
187# test262 enable/disable strict mode tests
188test262-test-sys-prop.test.js.enable.strict.mode=true
189
190# file containing test262 tests to be excluded
191# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
192
193# list of test262 test dirs to be excluded
194test262-test-sys-prop.test.js.exclude.dir=\
195    ${test262.suite.dir}/intl402/
196
197# test262 test frameworks
198test262-test-sys-prop.test.js.framework=\
199    -timezone=PST \
200    ${test.script.dir}/test262.js \
201    ${test262.dir}/test/harness/framework.js \
202    ${test262.dir}/test/harness/sta.js
203
204run.test.classpath=\
205    ${file.reference.testng.jar}:\
206    ${nashorn.internal.tests.jar}:\
207    ${nashorn.api.tests.jar}
208
209src.dir=src
210test.src.dir=test/src
211
212run.test.xmx=3G
213run.test.xms=2G
214
215#  -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
216# add '-Dtest.js.outofprocess' to run each test in a new sub-process
217run.test.jvmargs.main=-server -Xmx${run.test.xmx} -XX:-TieredCompilation -ea -Dnashorn.debug=true -Dfile.encoding=UTF-8
218#-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
219run.test.jvmargs.octane.main=-Xms${run.test.xms} ${run.test.jvmargs.main}
220
221run.test.jvmsecurityargs=-Xverify:all -Djava.security.properties=${basedir}/make/java.security.override -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
222
223# path of rhino.jar for benchmarks
224rhino.jar=
225
226v8.shell=d8
227
228#path to rhino jar file
229octaneperf-sys-prop.rhino.jar=${rhino.jar}
230
231#timeout for performance tests in minutes
232octaneperf-sys-prop.timeout.value=10
233
234################
235# codecoverage #
236################
237	#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
238make.code.coverage=false
239	#type of codecoverage; one of static or dynamic. Now only dynamic is supported
240jcov=dynamic
241	#naming of CC results
242	#NB directory specified in the cc.dir will be cleaned up!!!
243cc.dir=${basedir}/../Codecoverage_Nashorn
244cc.result.file.name=CC_${jcov}_nashorn.xml
245	#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
246jcov2.lib.dir=${basedir}/../jcov2/lib
247jcov.jar=${jcov2.lib.dir}/jcov.jar
248cc.include=jdk\.nashorn\.*
249cc.exclude=jdk\.nashorn\.internal\.scripts\.*
250cc.dynamic.genereate.template=true
251cc.template=${cc.dir}/CC_template.xml
252cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}
253