author | juh |
Wed, 27 Nov 2013 15:25:36 -0800 | |
changeset 21943 | 0fdb9441797f |
parent 21690 | ffbb4611d1f4 |
child 22367 | 8c17b1979d29 |
permissions | -rw-r--r-- |
16147 | 1 |
# |
16151 | 2 |
# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. |
16147 | 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 |
||
24 |
application.title=nashorn |
|
25 |
||
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
26 |
# location of JDK embedded ASM sources |
16272 | 27 |
jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm |
16154
de44634fa4ec
8005782: get rid of javadoc errors, warnings in nashorn build
sundar
parents:
16151
diff
changeset
|
28 |
|
16147 | 29 |
# source and target levels |
30 |
build.compiler=modern |
|
31 |
javac.source=1.7 |
|
32 |
javac.target=1.7 |
|
33 |
||
34 |
# nashorn version information |
|
35 |
nashorn.version=0.1 |
|
36 |
nashorn.fullversion=0.1 |
|
37 |
nashorn.product.name=Oracle Nashorn |
|
38 |
||
39 |
# This directory is removed when the project is cleaned: |
|
40 |
build.dir=build |
|
41 |
build.classes.dir=${build.dir}/classes |
|
42 |
build.zip=${build.dir}/nashorn.zip |
|
43 |
build.gzip=${build.dir}/nashorn.tar.gz |
|
44 |
||
45 |
# nashorn Shell tool |
|
46 |
nashorn.shell.tool=jdk.nashorn.tools.Shell |
|
47 |
||
48 |
# nasgen tool |
|
49 |
nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main |
|
50 |
||
51 |
# parallel test runner tool |
|
52 |
parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner |
|
53 |
||
54 |
# test classes directory |
|
55 |
build.test.classes.dir=${build.dir}/test/classes |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
56 |
# nashorn test jar - internal tests jar and api tests jar |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
57 |
nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
58 |
nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
59 |
|
16147 | 60 |
# test results directory |
61 |
build.test.results.dir=${build.dir}/test/reports |
|
62 |
||
63 |
# This directory is removed when the project is cleaned: |
|
64 |
dist.dir=dist |
|
65 |
dist.jar=${dist.dir}/nashorn.jar |
|
66 |
dist.javadoc.dir=${dist.dir}/javadoc |
|
67 |
||
16763 | 68 |
# nashorn javafx shell |
69 |
fxshell.tool = jdk.nashorn.tools.FXShell |
|
70 |
fxshell.classes.dir = ${build.dir}/fxshell/classes |
|
71 |
fxshell.dir = tools/fxshell |
|
72 |
fxshell.jar = ${dist.dir}/nashornfx.jar |
|
73 |
||
16147 | 74 |
# jars refererred |
75 |
file.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 |
||
82 |
testng.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 |
||
88 |
testng.listeners=\ |
|
89 |
org.testng.reporters.SuiteHTMLReporter, \ |
|
17779
7ae33ea741e7
8005979: A lot of tests are named "runTest" in reports
sundar
parents:
17772
diff
changeset
|
90 |
org.testng.reporters.TestHTMLReporter, \ |
16147 | 91 |
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 |
||
97 |
javac.debug=true |
|
98 |
javac.encoding=ascii |
|
99 |
javac.classpath=\ |
|
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16226
diff
changeset
|
100 |
${build.classes.dir} |
16147 | 101 |
javac.test.classpath=\ |
102 |
${build.classes.dir}:\ |
|
103 |
${build.test.classes.dir}:\ |
|
104 |
${file.reference.testng.jar} |
|
105 |
||
106 |
meta.inf.dir=${src.dir}/META-INF |
|
107 |
||
108 |
run.classpath=\ |
|
109 |
${build.classes.dir} |
|
110 |
||
111 |
# test scripts to run |
|
112 |
test.dir=test |
|
113 |
test.script.dir=test/script |
|
114 |
test.basic.dir=test/script/basic |
|
115 |
test.error.dir=test/script/error |
|
116 |
test.sandbox.dir=test/script/sandbox |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
117 |
test.trusted.dir=test/script/trusted |
16147 | 118 |
test.external.dir=test/script/external |
119 |
test262.dir=${test.external.dir}/test262 |
|
120 |
test262.suite.dir=${test262.dir}/test/suite |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
121 |
testjfx.dir=${test.script.dir}/jfx |
16147 | 122 |
|
123 |
test-sys-prop.test.dir=${test.dir} |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
124 |
test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir} |
16147 | 125 |
test-sys-prop.test262.suite.dir=${test262.suite.dir} |
126 |
test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases |
|
127 |
test-sys-prop.test.basic.dir=${test.basic.dir} |
|
128 |
||
129 |
# framework root for our script tests |
|
130 |
test-sys-prop.test.js.framework=${test.script.dir}/assert.js |
|
131 |
||
132 |
# Control the verbosity of ParserTest |
|
133 |
test-sys-prop.parsertest.verbose=false |
|
134 |
||
135 |
# turn on/off scripting mode for parser tests |
|
136 |
test-sys-prop.parsertest.scripting=true |
|
137 |
||
138 |
# turn on/off test262 scripts for parser tests |
|
139 |
test-sys-prop.parsertest.test262=false |
|
140 |
||
141 |
# Control the verbosity of the CompilerTest |
|
142 |
test-sys-prop.compilertest.verbose=false |
|
143 |
||
144 |
# turn on/off scripting mode for compiler tests |
|
145 |
test-sys-prop.compilertest.scripting=true |
|
146 |
||
147 |
# turn on/off test262 scripts for compiler tests |
|
148 |
test-sys-prop.compilertest.test262=false |
|
149 |
||
150 |
# test directory to be excluded. |
|
151 |
test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir} |
|
152 |
||
153 |
# run everything that's js in here, without checking file headers for test annotations |
|
154 |
test-sys-prop.test.js.unchecked.dir=${test262.dir} |
|
155 |
||
156 |
# test root for octane |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16162
diff
changeset
|
157 |
octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/ |
16147 | 158 |
|
16169
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
159 |
# run octane benchmars in separate processes? |
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
160 |
octane-test-sys-prop.separate.process=true |
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
161 |
|
16147 | 162 |
# framework root for octane |
163 |
octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js |
|
164 |
||
165 |
# list of tests to be excluded |
|
16169
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
166 |
# mandreel excluded due to OOM |
16165
4391faad6957
8005987: ant octane tries to run non-benchmark scripts
sundar
parents:
16163
diff
changeset
|
167 |
octane-test-sys-prop.test.js.exclude.list=\ |
4391faad6957
8005987: ant octane tries to run non-benchmark scripts
sundar
parents:
16163
diff
changeset
|
168 |
base.js \ |
16169
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
169 |
run.js \ |
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
170 |
mandreel.js |
16147 | 171 |
|
172 |
# test root for sunspider |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16162
diff
changeset
|
173 |
sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/ |
16147 | 174 |
|
175 |
# framework root for sunspider |
|
176 |
sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js |
|
177 |
||
178 |
# list of tests to be excluded |
|
179 |
sunspider-test-sys-prop.test.js.exclude.list= |
|
180 |
||
181 |
# execute our script tests in shared nashorn context or not? |
|
182 |
test-sys-prop.test.js.shared.context=false |
|
183 |
||
184 |
# execute test262 tests in shared nashorn context or not? |
|
185 |
test262-test-sys-prop.test.js.shared.context=true |
|
186 |
||
187 |
# test262 test root |
|
188 |
test262-test-sys-prop.test.js.roots=${test262.suite.dir} |
|
189 |
# test262 enable/disable strict mode tests |
|
190 |
test262-test-sys-prop.test.js.enable.strict.mode=true |
|
191 |
||
192 |
# file containing test262 tests to be excluded |
|
193 |
# test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml |
|
194 |
||
195 |
# list of test262 test dirs to be excluded |
|
196 |
test262-test-sys-prop.test.js.exclude.dir=\ |
|
18335
1b5fdae617cf
8016550: nashorn.option.no.syntax.extensions has the wrong default
sundar
parents:
17779
diff
changeset
|
197 |
${test262.suite.dir}/intl402/ \ |
1b5fdae617cf
8016550: nashorn.option.no.syntax.extensions has the wrong default
sundar
parents:
17779
diff
changeset
|
198 |
${test262.suite.dir}/bestPractice/ |
16147 | 199 |
|
17526 | 200 |
test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests |
201 |
||
16147 | 202 |
# test262 test frameworks |
203 |
test262-test-sys-prop.test.js.framework=\ |
|
18855
408663ef8f66
8020015: shared PropertyMaps should not be used without duplication
sundar
parents:
18335
diff
changeset
|
204 |
--class-cache-size=0 \ |
408663ef8f66
8020015: shared PropertyMaps should not be used without duplication
sundar
parents:
18335
diff
changeset
|
205 |
--no-java \ |
408663ef8f66
8020015: shared PropertyMaps should not be used without duplication
sundar
parents:
18335
diff
changeset
|
206 |
--no-typed-arrays \ |
16147 | 207 |
-timezone=PST \ |
208 |
${test.script.dir}/test262.js \ |
|
209 |
${test262.dir}/test/harness/framework.js \ |
|
210 |
${test262.dir}/test/harness/sta.js |
|
211 |
||
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
212 |
# testjfx test root |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
213 |
testjfx-test-sys-prop.test.js.roots=${testjfx.dir} |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
214 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
215 |
# execute testjfx tests in shared nashorn context or not? |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
216 |
testjfx-test-sys-prop.test.js.shared.context=false |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
217 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
218 |
# framework root for our script tests |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
219 |
testjfx-test-sys-prop.test.js.framework=\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
220 |
-fx \ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
221 |
${test.script.dir}${file.separator}jfx.js |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
222 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
223 |
file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
224 |
file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
225 |
file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
226 |
file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
227 |
testjfx.run.test.classpath=\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
228 |
${file.reference.jemmyfx.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
229 |
${file.reference.jemmycore.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
230 |
${file.reference.jemmyawtinput.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
231 |
${file.reference.testng.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
232 |
${nashorn.internal.tests.jar}${path.separator}\ |
21690
ffbb4611d1f4
8027708: NASHORN TEST: Create Nashorn test that draws image step-by-step using JavaFX canvas.
kshefov
parents:
21443
diff
changeset
|
233 |
${nashorn.api.tests.jar} |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
234 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
235 |
# testjfx VM options for script tests with @fork option |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
236 |
testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath} |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
237 |
|
16147 | 238 |
run.test.classpath=\ |
239 |
${file.reference.testng.jar}:\ |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
240 |
${nashorn.internal.tests.jar}:\ |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
241 |
${nashorn.api.tests.jar} |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
242 |
|
16147 | 243 |
src.dir=src |
244 |
test.src.dir=test/src |
|
245 |
||
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19459
diff
changeset
|
246 |
# -Xmx is used for all tests, -Xms only for octane benchmark |
16181
f6a125580f62
8006562: findOwnMH in nashorn "objects" package should be cleaned up
sundar
parents:
16169
diff
changeset
|
247 |
run.test.xmx=3G |
f6a125580f62
8006562: findOwnMH in nashorn "objects" package should be cleaned up
sundar
parents:
16169
diff
changeset
|
248 |
run.test.xms=2G |
f6a125580f62
8006562: findOwnMH in nashorn "objects" package should be cleaned up
sundar
parents:
16169
diff
changeset
|
249 |
|
17772
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
250 |
run.test.user.language=tr |
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
251 |
run.test.user.country=TR |
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
252 |
|
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19459
diff
changeset
|
253 |
run.test.jvmargs.common=-server -XX:+TieredCompilation -Dfile.encoding=UTF-8 -Duser.language=${run.test.user.language} -Duser.country=${run.test.user.country} -XX:+HeapDumpOnOutOfMemoryError |
19459 | 254 |
|
255 |
#-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M |
|
256 |
# -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods |
|
257 |
||
258 |
# turn on assertions for tests |
|
259 |
run.test.jvmargs.main=${run.test.jvmargs.common} -ea |
|
17772
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
260 |
|
19456
8cc345d620c8
8022524: Memory leaks in nashorn sources and tests found by jhat analysis
sundar
parents:
19105
diff
changeset
|
261 |
#-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M |
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19459
diff
changeset
|
262 |
run.test.jvmargs.octane.main=${run.test.jvmargs.common} |
16147 | 263 |
|
20567 | 264 |
run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy |
16147 | 265 |
|
19105
a01ba9d17eab
8021571: @fork tests should use VM options passed from project.properties
sundar
parents:
19103
diff
changeset
|
266 |
# VM options for script tests with @fork option |
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19459
diff
changeset
|
267 |
test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} |
19105
a01ba9d17eab
8021571: @fork tests should use VM options passed from project.properties
sundar
parents:
19103
diff
changeset
|
268 |
|
16147 | 269 |
# path of rhino.jar for benchmarks |
270 |
rhino.jar= |
|
271 |
||
272 |
v8.shell=d8 |
|
273 |
||
274 |
#path to rhino jar file |
|
275 |
octaneperf-sys-prop.rhino.jar=${rhino.jar} |
|
276 |
||
277 |
#timeout for performance tests in minutes |
|
278 |
octaneperf-sys-prop.timeout.value=10 |
|
16255 | 279 |
|
280 |
################ |
|
281 |
# codecoverage # |
|
282 |
################ |
|
283 |
#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties |
|
284 |
make.code.coverage=false |
|
285 |
#type of codecoverage; one of static or dynamic. Now only dynamic is supported |
|
286 |
jcov=dynamic |
|
287 |
#naming of CC results |
|
288 |
#NB directory specified in the cc.dir will be cleaned up!!! |
|
289 |
cc.dir=${basedir}/../Codecoverage_Nashorn |
|
16529 | 290 |
cc.result.file.name=CC_${jcov}_nashorn.xml |
16255 | 291 |
#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties |
292 |
jcov2.lib.dir=${basedir}/../jcov2/lib |
|
293 |
jcov.jar=${jcov2.lib.dir}/jcov.jar |
|
294 |
cc.include=jdk\.nashorn\.* |
|
295 |
cc.exclude=jdk\.nashorn\.internal\.scripts\.* |
|
16529 | 296 |
cc.dynamic.genereate.template=true |
297 |
cc.template=${cc.dir}/CC_template.xml |
|
16255 | 298 |
cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name} |