author | prr |
Mon, 16 Nov 2015 16:07:46 -0800 | |
changeset 34399 | 7ea60f3aab93 |
parent 32438 | 58a722811c59 |
child 34447 | ec4c069f9436 |
permissions | -rw-r--r-- |
16147 | 1 |
# |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
2 |
# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. |
16147 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
29407 | 4 |
# |
16147 | 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. |
|
29407 | 8 |
# |
16147 | 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). |
|
29407 | 14 |
# |
16147 | 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. |
|
29407 | 18 |
# |
16147 | 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 |
28126 | 27 |
jdk.asm.src.dir=../jdk/src/java.base/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 |
|
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
29 |
# location of JDK embedded jline sources |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
30 |
jdk.jline.src.dir=../jdk/src/jdk.internal.le/share/classes |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
31 |
|
16147 | 32 |
# source and target levels |
33 |
build.compiler=modern |
|
26070
1c348e8d9b88
8055395: Nashorn should use source, target to be 1.8 and use ASM5 version for generated code
sundar
parents:
26069
diff
changeset
|
34 |
javac.source=1.8 |
1c348e8d9b88
8055395: Nashorn should use source, target to be 1.8 and use ASM5 version for generated code
sundar
parents:
26069
diff
changeset
|
35 |
javac.target=1.8 |
16147 | 36 |
|
37 |
# nashorn version information |
|
38 |
nashorn.version=0.1 |
|
39 |
nashorn.fullversion=0.1 |
|
40 |
nashorn.product.name=Oracle Nashorn |
|
41 |
||
42 |
# This directory is removed when the project is cleaned: |
|
43 |
build.dir=build |
|
44 |
build.classes.dir=${build.dir}/classes |
|
45 |
build.zip=${build.dir}/nashorn.zip |
|
46 |
build.gzip=${build.dir}/nashorn.tar.gz |
|
47 |
||
48 |
# nashorn Shell tool |
|
49 |
nashorn.shell.tool=jdk.nashorn.tools.Shell |
|
50 |
||
51 |
# nasgen tool |
|
52 |
nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main |
|
53 |
||
54 |
# parallel test runner tool |
|
55 |
parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner |
|
56 |
||
57 |
# test classes directory |
|
58 |
build.test.classes.dir=${build.dir}/test/classes |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
59 |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
60 |
# 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
|
61 |
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
|
62 |
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
|
63 |
|
16147 | 64 |
# test results directory |
65 |
build.test.results.dir=${build.dir}/test/reports |
|
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
66 |
build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports |
24769 | 67 |
build.nooptimistic.test.results.dir=${build.dir}/test/nooptimistic/reports |
16147 | 68 |
|
69 |
# This directory is removed when the project is cleaned: |
|
70 |
dist.dir=dist |
|
71 |
dist.jar=${dist.dir}/nashorn.jar |
|
72 |
dist.javadoc.dir=${dist.dir}/javadoc |
|
73 |
||
16763 | 74 |
# nashorn javafx shell |
75 |
fxshell.tool = jdk.nashorn.tools.FXShell |
|
76 |
fxshell.classes.dir = ${build.dir}/fxshell/classes |
|
77 |
fxshell.dir = tools/fxshell |
|
78 |
fxshell.jar = ${dist.dir}/nashornfx.jar |
|
79 |
||
22366
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20567
diff
changeset
|
80 |
# configuration for java flight recorder |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20567
diff
changeset
|
81 |
run.test.jvmargs.jfr=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath=${build.dir},stackdepth=128 |
1db7c8634626
8029090: Developers should be able to pass nashorn properties and enable/disable JFR from command line
sundar
parents:
20567
diff
changeset
|
82 |
|
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
83 |
# test library location |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
84 |
test.lib=${basedir}${file.separator}test${file.separator}lib |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
85 |
|
16147 | 86 |
# jars refererred |
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
87 |
file.reference.testng.jar=${test.lib}${file.separator}testng.jar |
16147 | 88 |
|
89 |
# Set testng verbose level |
|
29407 | 90 |
# 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 |
|
16147 | 92 |
# debug mode (no longer slicing off stack traces and all)." |
93 |
||
94 |
testng.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 |
||
100 |
testng.listeners=\ |
|
101 |
org.testng.reporters.SuiteHTMLReporter, \ |
|
17779
7ae33ea741e7
8005979: A lot of tests are named "runTest" in reports
sundar
parents:
17772
diff
changeset
|
102 |
org.testng.reporters.TestHTMLReporter, \ |
16147 | 103 |
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 |
||
109 |
javac.debug=true |
|
110 |
javac.encoding=ascii |
|
111 |
javac.classpath=\ |
|
16234
86cb162cec6c
8008085: Integrate Dynalink source code into Nashorn codebase
attila
parents:
16226
diff
changeset
|
112 |
${build.classes.dir} |
16147 | 113 |
javac.test.classpath=\ |
30515
d76d66d416ed
8080286: use path separator setting consistently in Nashorn project properties
mhaupt
parents:
30388
diff
changeset
|
114 |
${build.classes.dir}${path.separator}\ |
d76d66d416ed
8080286: use path separator setting consistently in Nashorn project properties
mhaupt
parents:
30388
diff
changeset
|
115 |
${build.test.classes.dir}${path.separator}\ |
16147 | 116 |
${file.reference.testng.jar} |
117 |
||
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
118 |
meta.inf.dir=${nashorn.module.src.dir}/META-INF |
16147 | 119 |
|
120 |
run.classpath=\ |
|
121 |
${build.classes.dir} |
|
122 |
||
123 |
# test scripts to run |
|
124 |
test.dir=test |
|
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
125 |
test.nosecurity.dir=test/script/nosecurity |
16147 | 126 |
test.script.dir=test/script |
127 |
test.basic.dir=test/script/basic |
|
23075
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
128 |
test.maptests.dir=test/script/maptests |
16147 | 129 |
test.error.dir=test/script/error |
130 |
test.sandbox.dir=test/script/sandbox |
|
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
131 |
test.trusted.dir=test/script/trusted |
16147 | 132 |
test.external.dir=test/script/external |
133 |
test262.dir=${test.external.dir}/test262 |
|
134 |
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
|
135 |
testjfx.dir=${test.script.dir}/jfx |
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
136 |
testmarkdown.dir=${test.script.dir}/markdown |
16147 | 137 |
|
138 |
test-sys-prop.test.dir=${test.dir} |
|
23075
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
139 |
test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir} |
16147 | 140 |
test-sys-prop.test262.suite.dir=${test262.suite.dir} |
141 |
test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases |
|
142 |
test-sys-prop.test.basic.dir=${test.basic.dir} |
|
29407 | 143 |
test-sys-prop.test.external.dir=${test.external.dir} |
144 |
test-sys-prop.test.maptests.dir=${test.maptests.dir} |
|
145 |
test-sys-prop.test.sandbox.dir=${test.sandbox.dir} |
|
146 |
test-sys-prop.test.trusted.dir=${test.trusted.dir} |
|
16147 | 147 |
|
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
148 |
test-sys-prop-no-security.test.dir=${test.dir} |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
149 |
test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir} |
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
150 |
|
16147 | 151 |
# framework root for our script tests |
152 |
test-sys-prop.test.js.framework=${test.script.dir}/assert.js |
|
24586
601c81b4165d
8043443: Test framework changes to run script tests without security manager
sundar
parents:
23372
diff
changeset
|
153 |
test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js |
16147 | 154 |
|
155 |
# Control the verbosity of ParserTest |
|
156 |
test-sys-prop.parsertest.verbose=false |
|
157 |
||
158 |
# turn on/off scripting mode for parser tests |
|
159 |
test-sys-prop.parsertest.scripting=true |
|
29407 | 160 |
test-sys-prop.parserapitest.verbose=false |
16147 | 161 |
|
162 |
# turn on/off test262 scripts for parser tests |
|
163 |
test-sys-prop.parsertest.test262=false |
|
29407 | 164 |
test-sys-prop.parserapitest.test262=false |
16147 | 165 |
|
166 |
# Control the verbosity of the CompilerTest |
|
167 |
test-sys-prop.compilertest.verbose=false |
|
168 |
||
169 |
# turn on/off scripting mode for compiler tests |
|
170 |
test-sys-prop.compilertest.scripting=true |
|
171 |
||
172 |
# turn on/off test262 scripts for compiler tests |
|
173 |
test-sys-prop.compilertest.test262=false |
|
174 |
||
175 |
# test directory to be excluded. |
|
176 |
test-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 |
|
179 |
test-sys-prop.test.js.unchecked.dir=${test262.dir} |
|
180 |
||
181 |
# test root for octane |
|
16163
71f4cff209a9
8005940: provide ant targets to get and update external test scripts
sundar
parents:
16162
diff
changeset
|
182 |
octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/ |
16147 | 183 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
184 |
# run octane benchmars in separate processes? (recommended) |
16169
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
185 |
octane-test-sys-prop.separate.process=true |
45718b3a87eb
8006082: Provide option to run octane benchmarks in separate processes
sundar
parents:
16165
diff
changeset
|
186 |
|
16147 | 187 |
# framework root for octane |
188 |
octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js |
|
189 |
||
190 |
# test root for sunspider |
|
24719 | 191 |
sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0.2/ |
16147 | 192 |
|
193 |
# framework root for sunspider |
|
194 |
sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js |
|
195 |
||
196 |
# list of tests to be excluded |
|
197 |
sunspider-test-sys-prop.test.js.exclude.list= |
|
198 |
||
199 |
# execute our script tests in shared nashorn context or not? |
|
200 |
test-sys-prop.test.js.shared.context=false |
|
201 |
||
202 |
# execute test262 tests in shared nashorn context or not? |
|
203 |
test262-test-sys-prop.test.js.shared.context=true |
|
204 |
||
205 |
# test262 test root |
|
206 |
test262-test-sys-prop.test.js.roots=${test262.suite.dir} |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
207 |
|
16147 | 208 |
# test262 enable/disable strict mode tests |
209 |
test262-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 |
|
215 |
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
|
216 |
${test262.suite.dir}/intl402/ \ |
26056
a64f0cd60e66
8054651: Global.initConstructor and ScriptFunction.getPrototype(Object) can have stricter types
sundar
parents:
26055
diff
changeset
|
217 |
${test262.suite.dir}/bestPractice/ |
16147 | 218 |
|
17526 | 219 |
test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests |
220 |
||
16147 | 221 |
# test262 test frameworks |
222 |
test262-test-sys-prop.test.js.framework=\ |
|
23372
09707b3e5fb0
8021350: Share script classes between threads/globals within context
hannesw
parents:
23075
diff
changeset
|
223 |
--class-cache-size=10 \ |
18855
408663ef8f66
8020015: shared PropertyMaps should not be used without duplication
sundar
parents:
18335
diff
changeset
|
224 |
--no-java \ |
408663ef8f66
8020015: shared PropertyMaps should not be used without duplication
sundar
parents:
18335
diff
changeset
|
225 |
--no-typed-arrays \ |
16147 | 226 |
-timezone=PST \ |
227 |
${test.script.dir}/test262.js \ |
|
228 |
${test262.dir}/test/harness/framework.js \ |
|
229 |
${test262.dir}/test/harness/sta.js |
|
230 |
||
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
231 |
# testmarkdown test root |
26055
fe8be844ba50
8043956: Make code caching work with optimistic typing and lazy compilation
hannesw
parents:
25675
diff
changeset
|
232 |
testmarkdown-test-sys-prop.test.js.roots=${testmarkdown.dir} |
22371
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
233 |
|
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
234 |
# execute testmarkdown tests in shared nashorn context or not? |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
235 |
testmarkdown-test-sys-prop.test.js.shared.context=false |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
236 |
|
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
237 |
# framework root for markdown script tests |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
238 |
testmarkdown-test-sys-prop.test.js.framework=\ |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
239 |
${test.script.dir}${file.separator}markdown.js |
e6b607104dc6
8027958: NASHORN TEST: Create tests to test markdown javascript engine work with Nashorn
sundar
parents:
22367
diff
changeset
|
240 |
|
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
241 |
# testjfx test root |
26055
fe8be844ba50
8043956: Make code caching work with optimistic typing and lazy compilation
hannesw
parents:
25675
diff
changeset
|
242 |
testjfx-test-sys-prop.test.js.roots=${testjfx.dir} |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
243 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
244 |
# 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
|
245 |
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
|
246 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
247 |
# framework root for our script tests |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
248 |
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
|
249 |
-fx \ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
250 |
${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
|
251 |
|
30981
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
252 |
file.reference.jemmyfx.jar=${test.lib}${file.separator}JemmyFX.jar |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
253 |
file.reference.jemmycore.jar=${test.lib}${file.separator}JemmyCore.jar |
7ef4e72901cf
8080275: transparently download testng.jar for Nashorn testing
mhaupt
parents:
30515
diff
changeset
|
254 |
file.reference.jemmyawtinput.jar=${test.lib}${file.separator}JemmyAWTInput.jar |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
255 |
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
|
256 |
testjfx.run.test.classpath=\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
257 |
${file.reference.jemmyfx.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
258 |
${file.reference.jemmycore.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
259 |
${file.reference.jemmyawtinput.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
260 |
${file.reference.testng.jar}${path.separator}\ |
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
261 |
${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
|
262 |
${nashorn.api.tests.jar} |
21443
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
263 |
|
85671274e5fb
8026871: NASHORN TEST: Enable possibility to test Nashorn use of JavaFX canvas.
kshefov
parents:
20567
diff
changeset
|
264 |
# 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
|
265 |
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
|
266 |
|
16147 | 267 |
run.test.classpath=\ |
30515
d76d66d416ed
8080286: use path separator setting consistently in Nashorn project properties
mhaupt
parents:
30388
diff
changeset
|
268 |
${file.reference.testng.jar}${path.separator}\ |
d76d66d416ed
8080286: use path separator setting consistently in Nashorn project properties
mhaupt
parents:
30388
diff
changeset
|
269 |
${nashorn.internal.tests.jar}${path.separator}\ |
16221
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
270 |
${nashorn.api.tests.jar} |
38ac51eba133
8007715: Make sure that not all tests run with AllPermission
sundar
parents:
16188
diff
changeset
|
271 |
|
32152
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
272 |
nashorn.module.src.dir=src/jdk.scripting.nashorn/share/classes |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
273 |
nashorn.shell.module.src.dir=src/jdk.scripting.nashorn.shell/share/classes |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
274 |
|
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
275 |
src.dir=${nashorn.module.src.dir}${path.separator}\ |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
276 |
${nashorn.shell.module.src.dir}${path.separator}\ |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
277 |
${jdk.jline.src.dir} |
705d4af0d4d7
8133347: Add makefiles support and basic session, persistence history navigation with jline
sundar
parents:
30981
diff
changeset
|
278 |
|
16147 | 279 |
test.src.dir=test/src |
280 |
||
20212
5e7711039ab0
8023154: compileAllTests fails with: 2 tests failed to compile
hannesw
parents:
19459
diff
changeset
|
281 |
# -Xmx is used for all tests, -Xms only for octane benchmark |
24587
c17e03fc8cc4
8028615: jdk.nashorn.x3::some.serious.failure needs more memory to run
mnunez
parents:
24586
diff
changeset
|
282 |
run.test.xmx=2G |
16181
f6a125580f62
8006562: findOwnMH in nashorn "objects" package should be cleaned up
sundar
parents:
16169
diff
changeset
|
283 |
run.test.xms=2G |
f6a125580f62
8006562: findOwnMH in nashorn "objects" package should be cleaned up
sundar
parents:
16169
diff
changeset
|
284 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
285 |
# uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames, |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
286 |
# or everything will as of the now drown in lambda forms and be cut off. |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
287 |
# |
24719 | 288 |
#jfr.args=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath="test_suite.jfr",stackdepth=1024 \ |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
289 |
|
24719 | 290 |
jfr.args= |
291 |
||
17772
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
292 |
run.test.user.language=tr |
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
293 |
run.test.user.country=TR |
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
294 |
|
24719 | 295 |
run.test.jvmargs.common=\ |
296 |
-server \ |
|
297 |
-Dfile.encoding=UTF-8 \ |
|
298 |
-Duser.language=${run.test.user.language} \ |
|
299 |
-Duser.country=${run.test.user.country} \ |
|
25236
fac419f1e889
8046921: Deoptimization type information peristence
attila
parents:
24993
diff
changeset
|
300 |
-Dnashorn.typeInfo.cacheDir=${build.dir}${file.separator}test${file.separator}type_info_cache \ |
24719 | 301 |
${jfr.args} \ |
302 |
-XX:+HeapDumpOnOutOfMemoryError |
|
19459 | 303 |
|
304 |
# turn on assertions for tests |
|
32438
58a722811c59
8134887: nashorn ant test configuration should disable assertion for LamdaFormEditor class
sundar
parents:
32152
diff
changeset
|
305 |
run.test.jvmargs.main=${run.test.jvmargs.common} -esa -ea -da:java.lang.invoke.LambdaFormEditor |
17772
9acc52342786
8015351: Nashorn shell does not start with Turkish locale
sundar
parents:
17746
diff
changeset
|
306 |
|
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
307 |
# Extra jvmargs that might be useful for debugging |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
308 |
# and performance improvements/monitoring |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
309 |
# |
29407 | 310 |
# -XX:+UnlockDiagnosticVMOptions |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
311 |
# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
312 |
# turn off compressed class pointers in metaspace |
29407 | 313 |
# -XX:-UseCompressedKlassPointers |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
314 |
# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
315 |
# dump the heap after every GC |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
316 |
# -XX:+PrintHeapAtGC |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
317 |
# |
29407 | 318 |
# manually set a metaspace size for class data |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
319 |
# -XX:ClassMetaspaceSize=300M |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
320 |
# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
321 |
# print out methods compiled |
29407 | 322 |
# -XX:+PrintCompilation |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
323 |
# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
324 |
# print all compiled nmethods with oopmaps and lots of other info |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
325 |
# -XX:+PrintNMethods |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
326 |
# |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
327 |
# activate the generic "UseNewCode" flag to test whatever functionality |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
328 |
# lies behind it. This is the preferred way to test a, yet flagless, |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
329 |
# feature in HotSpot - for example, the uncommon trap placement fix |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
330 |
# was hidden behind this flag before it became the default |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
331 |
# |
29407 | 332 |
# -XX:+UnlockDiagnosticVMOptions -XX:+UseNewCode |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
333 |
# |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
334 |
# Crank up the type profile level to 222, which has some warmup |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
335 |
# penalties, but produces much better code for JavaScript, where better |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
336 |
# and more intrusive type profiling is required to get rid of |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
337 |
# a large amount of unnecessary guard code, that could not otherwise |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
338 |
# be eliminated |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
339 |
# |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
340 |
# -XX:TypeProfileLevel=222 |
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
341 |
# |
16147 | 342 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
343 |
# Use best known performance options for octane |
26982
ff5dd57a40f2
8059811: Turn off optimistic typing by default and add both ant test-pessimistic and ant test-optimistic sub-test suites.
lagergren
parents:
26070
diff
changeset
|
344 |
run.test.jvmargs.octane.main=${run.test.jvmargs.common} -XX:TypeProfileLevel=222 |
16147 | 345 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
346 |
# Security manager args - make sure that we run with the nashorn.policy that the build creates |
25675
556f675a6a12
8051019: Separate src and test execution sandbox directories
sundar
parents:
25236
diff
changeset
|
347 |
run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${build.dir}/nashorn.policy |
16147 | 348 |
|
19105
a01ba9d17eab
8021571: @fork tests should use VM options passed from project.properties
sundar
parents:
19103
diff
changeset
|
349 |
# VM options for script tests with @fork option |
23075
0e9484b12766
8033763: Add tests to assert map identity of certain objects
sundar
parents:
22371
diff
changeset
|
350 |
test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath} |
30388
3a270ce8e030
8078049: Nashorn crashes when attempting to start TypeScript compiler
hannesw
parents:
29407
diff
changeset
|
351 |
# VM options for no-security script tests with @fork option - same as above but without jvmsecurityargs |
3a270ce8e030
8078049: Nashorn crashes when attempting to start TypeScript compiler
hannesw
parents:
29407
diff
changeset
|
352 |
test-sys-prop-no-security.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${run.test.classpath} |
19105
a01ba9d17eab
8021571: @fork tests should use VM options passed from project.properties
sundar
parents:
19103
diff
changeset
|
353 |
|
16147 | 354 |
# path of rhino.jar for benchmarks |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
355 |
rhino.dir= |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
356 |
rhino.jar=${rhino.dir}/js.jar |
16147 | 357 |
|
358 |
v8.shell=d8 |
|
359 |
||
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
360 |
# How many iterations should 'ant octane' run for each |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
361 |
# benchmark |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
362 |
octane.iterations=25 |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
363 |
|
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
364 |
# List of octane tests to run, as properties prefixed with |
29407 | 365 |
# "octane.benchmark." mapping to the benchmark name in |
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
366 |
# the test harness |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
367 |
# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
368 |
# Octane tests that are disabled should have their entire line |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
369 |
# commented out Tests may be disabled for functionality reasons when |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
370 |
# they have bugs or when the runtime doesn't handle them (yet) |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
371 |
octane.benchmark.box2d=box2d |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
372 |
#octane.benchmark.code-load=code-load |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
373 |
octane.benchmark.crypto=crypto |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
374 |
octane.benchmark.deltablue=deltablue |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
375 |
octane.benchmark.earley-boyer=earley-boyer |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
376 |
octane.benchmark.gbemu=gbemu |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
377 |
octane.benchmark.navier-stokes=navier-stokes |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
378 |
octane.benchmark.mandreel=mandreel |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
379 |
octane.benchmark.pdfjs=pdfjs |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
380 |
octane.benchmark.raytrace=raytrace |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
381 |
octane.benchmark.regexp=regexp |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
382 |
octane.benchmark.richards=richards |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
383 |
octane.benchmark.splay=splay |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
384 |
#octane.benchmark.typescript=typescript |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
385 |
#octane.benchmark.zlib=zlib |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
386 |
|
16147 | 387 |
#path to rhino jar file |
388 |
octaneperf-sys-prop.rhino.jar=${rhino.jar} |
|
389 |
||
390 |
#timeout for performance tests in minutes |
|
391 |
octaneperf-sys-prop.timeout.value=10 |
|
16255 | 392 |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
393 |
#how many iterations to run sunspider after warmup |
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
394 |
sunspider.iterations=3000 |
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
395 |
|
24767
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
396 |
################# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
397 |
# code coverage # |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
398 |
################# |
0b8af588070b
8044012: Integrate the latest best known performance flags int ant octane jobs, and make sure that it's easy to compare 'ant octane-nashorn' and 'ant octane-v8' at the push of a button. (or rather; the entry of a command line)
lagergren
parents:
24727
diff
changeset
|
399 |
|
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
400 |
#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties |
16255 | 401 |
make.code.coverage=false |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
402 |
|
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
403 |
#type of codecoverage; one of static or dynamic. Now only dynamic is supported |
16255 | 404 |
jcov=dynamic |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
405 |
|
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
406 |
#naming of CC results |
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
407 |
#NB directory specified in the cc.dir will be cleaned up!!! |
16255 | 408 |
cc.dir=${basedir}/../Codecoverage_Nashorn |
16529 | 409 |
cc.result.file.name=CC_${jcov}_nashorn.xml |
24768
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
410 |
|
ae21f28f0ddc
8044102: Ensure bechmark exclude list for Octane benchmarks is in only one place, project.properties, and fix benchmark harness
lagergren
parents:
24767
diff
changeset
|
411 |
#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties |
16255 | 412 |
jcov2.lib.dir=${basedir}/../jcov2/lib |
413 |
jcov.jar=${jcov2.lib.dir}/jcov.jar |
|
414 |
cc.include=jdk\.nashorn\.* |
|
415 |
cc.exclude=jdk\.nashorn\.internal\.scripts\.* |
|
16529 | 416 |
cc.dynamic.genereate.template=true |
417 |
cc.template=${cc.dir}/CC_template.xml |
|
16255 | 418 |
cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name} |