project.properties revision 76:d7e83be6e7aa
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
24application.title=nashorn
25
26# location of JDK embedded ASM sources
27jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal
28
29# 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
56# 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
60# 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
68# jars refererred
69file.reference.testng.jar=test/lib/testng.jar
70
71# Set testng verbose level
72# From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) 
73# Actually, this is a lie: you can specify -1 and this will put TestNG in 
74# debug mode (no longer slicing off stack traces and all)."
75
76testng.verbose=2
77
78# TestNG listeners - we want to replace TestNG's own JUnit
79# reporter, but want everything else provided by default
80# Unfortunately, we've to clone the other default reporters here.
81
82testng.listeners=\
83 org.testng.reporters.SuiteHTMLReporter, \
84 org.testng.reporters.jq.Main, \
85 org.testng.reporters.FailedReporter, \
86 org.testng.reporters.XMLReporter \
87 org.testng.reporters.EmailableReporter, \
88 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
89
90# Define the version of Dynalink that is used. Version types are either
91# 'snapshot' or 'release'. When it is 'snapshot', the version must have
92# "-SNAPSHOT" suffix and the jar version will have a timestamp in it. When
93# it's 'release', the version has no suffix, and the jar version is 
94# identical to version - fun with Maven central.
95dynalink.version=0.5-SNAPSHOT
96dynalink.version.type=snapshot
97dynalink.jar.version=0.5-20130109.113843-12
98dynalink.dir.name=dynalink
99dynalink.dir=build/${dynalink.dir.name}
100dynalink.jar=${dynalink.dir}/dynalink.jar
101
102javac.debug=true
103javac.encoding=ascii
104javac.classpath=\
105    ${build.classes.dir}:\
106    ${dynalink.jar}
107javac.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
119test.script.dir=test/script
120test.basic.dir=test/script/basic
121test.error.dir=test/script/error
122test.sandbox.dir=test/script/sandbox
123test.trusted.dir=test/script/trusted
124test.external.dir=test/script/external
125test262.dir=${test.external.dir}/test262
126test262.suite.dir=${test262.dir}/test/suite
127
128test-sys-prop.test.dir=${test.dir}
129test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
130test-sys-prop.test262.suite.dir=${test262.suite.dir}
131test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
132test-sys-prop.test.basic.dir=${test.basic.dir}
133
134# framework root for our script tests
135test-sys-prop.test.js.framework=${test.script.dir}/assert.js
136
137# Control the verbosity of ParserTest
138test-sys-prop.parsertest.verbose=false
139
140# turn on/off scripting mode for parser tests
141test-sys-prop.parsertest.scripting=true
142
143# turn on/off test262 scripts for parser tests
144test-sys-prop.parsertest.test262=false
145
146# Control the verbosity of the CompilerTest
147test-sys-prop.compilertest.verbose=false
148
149# turn on/off scripting mode for compiler tests
150test-sys-prop.compilertest.scripting=true
151
152# turn on/off test262 scripts for compiler tests
153test-sys-prop.compilertest.test262=false
154
155# test directory to be excluded.
156test-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
159test-sys-prop.test.js.unchecked.dir=${test262.dir}
160
161# test root for octane
162octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
163
164# run octane benchmars in separate processes?
165octane-test-sys-prop.separate.process=true
166
167# framework root for octane
168octane-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
172octane-test-sys-prop.test.js.exclude.list=\
173    base.js \
174    run.js  \
175    mandreel.js
176
177# test root for sunspider
178sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
179
180# framework root for sunspider
181sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
182
183# list of tests to be excluded
184sunspider-test-sys-prop.test.js.exclude.list=
185
186# execute our script tests in shared nashorn context or not?
187test-sys-prop.test.js.shared.context=false
188
189# execute test262 tests in shared nashorn context or not?
190test262-test-sys-prop.test.js.shared.context=true
191
192# test262 test root
193test262-test-sys-prop.test.js.roots=${test262.suite.dir}
194# test262 enable/disable strict mode tests
195test262-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
201test262-test-sys-prop.test.js.exclude.dir=\
202    ${test262.suite.dir}/intl402/
203
204# test262 test frameworks
205test262-test-sys-prop.test.js.framework=\
206    -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}:\
213    ${nashorn.internal.tests.jar}:\
214    ${nashorn.api.tests.jar}
215
216src.dir=src
217test.src.dir=test/src
218
219run.test.xmx=3G
220run.test.xms=2G
221
222#  -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
223# add '-Dtest.js.outofprocess' to run each test in a new sub-process
224run.test.jvmargs=-server -Xmx${run.test.xmx} -XX:-TieredCompilation -esa -ea -Dnashorn.debug=true -Dfile.encoding=UTF-8 
225#-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
226run.test.jvmargs.octane=-Xms${run.test.xms} ${run.test.jvmargs}
227
228run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
229
230# path of rhino.jar for benchmarks
231rhino.jar=
232
233v8.shell=d8
234
235#path to rhino jar file
236octaneperf-sys-prop.rhino.jar=${rhino.jar}
237
238#timeout for performance tests in minutes
239octaneperf-sys-prop.timeout.value=10
240