make/project.properties

Mon, 15 Feb 2016 14:36:18 +0100

author
mhaupt
date
Mon, 15 Feb 2016 14:36:18 +0100
changeset 1741
a136c901f3f5
parent 1550
e9ea7010825b
child 1742
fe6ef89d9c04
permissions
-rw-r--r--

8149744: fix testng.jar delivery in Nashorn build.xml
Reviewed-by: hannesw, sundar

jlaskey@3 1 #
mhaupt@1391 2 # Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
jlaskey@3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jlaskey@3 4 #
jlaskey@3 5 # This code is free software; you can redistribute it and/or modify it
jlaskey@3 6 # under the terms of the GNU General Public License version 2 only, as
jlaskey@3 7 # published by the Free Software Foundation.
jlaskey@3 8 #
jlaskey@3 9 # This code is distributed in the hope that it will be useful, but WITHOUT
jlaskey@3 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jlaskey@3 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jlaskey@3 12 # version 2 for more details (a copy is included in the LICENSE file that
jlaskey@3 13 # accompanied this code).
jlaskey@3 14 #
jlaskey@3 15 # You should have received a copy of the GNU General Public License version
jlaskey@3 16 # 2 along with this work; if not, write to the Free Software Foundation,
jlaskey@3 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jlaskey@3 18 #
jlaskey@3 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jlaskey@3 20 # or visit www.oracle.com if you need additional information or have any
jlaskey@3 21 # questions.
jlaskey@3 22 #
jlaskey@3 23
jlaskey@3 24 application.title=nashorn
jlaskey@3 25
sundar@10 26 # location of JDK embedded ASM sources
sundar@128 27 jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal/org/objectweb/asm
sundar@10 28
jlaskey@3 29 # source and target levels
jlaskey@3 30 build.compiler=modern
jlaskey@3 31 javac.source=1.7
jlaskey@3 32 javac.target=1.7
sundar@1550 33 test.javac.source=1.8
sundar@1550 34 test.javac.target=1.8
jlaskey@3 35
jlaskey@3 36 # nashorn version information
jlaskey@3 37 nashorn.version=0.1
jlaskey@3 38 nashorn.fullversion=0.1
jlaskey@3 39 nashorn.product.name=Oracle Nashorn
jlaskey@3 40
jlaskey@3 41 # This directory is removed when the project is cleaned:
jlaskey@3 42 build.dir=build
jlaskey@3 43 build.classes.dir=${build.dir}/classes
jlaskey@3 44 build.zip=${build.dir}/nashorn.zip
jlaskey@3 45 build.gzip=${build.dir}/nashorn.tar.gz
jlaskey@3 46
jlaskey@3 47 # nashorn Shell tool
jlaskey@3 48 nashorn.shell.tool=jdk.nashorn.tools.Shell
jlaskey@3 49
jlaskey@3 50 # nasgen tool
jlaskey@3 51 nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
jlaskey@3 52
jlaskey@3 53 # parallel test runner tool
jlaskey@3 54 parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
jlaskey@3 55
jlaskey@3 56 # test classes directory
jlaskey@3 57 build.test.classes.dir=${build.dir}/test/classes
attila@963 58
sundar@77 59 # nashorn test jar - internal tests jar and api tests jar
sundar@77 60 nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
sundar@77 61 nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
sundar@77 62
jlaskey@3 63 # test results directory
jlaskey@3 64 build.test.results.dir=${build.dir}/test/reports
sundar@855 65 build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports
attila@963 66 build.nooptimistic.test.results.dir=${build.dir}/test/nooptimistic/reports
jlaskey@3 67
jlaskey@3 68 # This directory is removed when the project is cleaned:
jlaskey@3 69 dist.dir=dist
jlaskey@3 70 dist.jar=${dist.dir}/nashorn.jar
jlaskey@3 71 dist.javadoc.dir=${dist.dir}/javadoc
jlaskey@3 72
jlaskey@161 73 # nashorn javafx shell
jlaskey@161 74 fxshell.tool = jdk.nashorn.tools.FXShell
jlaskey@161 75 fxshell.classes.dir = ${build.dir}/fxshell/classes
jlaskey@161 76 fxshell.dir = tools/fxshell
jlaskey@161 77 fxshell.jar = ${dist.dir}/nashornfx.jar
jlaskey@161 78
attila@963 79 # configuration for java flight recorder
attila@963 80 run.test.jvmargs.jfr=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath=${build.dir},stackdepth=128
attila@963 81
mhaupt@1391 82 # test library location
mhaupt@1391 83 test.lib=${basedir}${file.separator}test${file.separator}lib
mhaupt@1391 84
jlaskey@3 85 # jars refererred
mhaupt@1741 86 file.reference.testng.jar=${test.lib}${file.separator}testng-6.8.jar
mhaupt@1741 87 file.reference.jcommander.jar=${test.lib}${file.separator}jcommander-1.27.jar
mhaupt@1741 88 file.reference.bsh.jar=${test.lib}${file.separator}bsh-2.0b4.jar
mhaupt@1741 89 file.reference.snakeyaml.jar=${test.lib}${file.separator}snakeyaml-1.6.jar
mhaupt@1741 90
mhaupt@1741 91 # TestNG ant task classpath
mhaupt@1741 92 testng.ant.classpath=\
mhaupt@1741 93 ${file.reference.testng.jar}${path.separator}\
mhaupt@1741 94 ${file.reference.jcommander.jar}${path.separator}\
mhaupt@1741 95 ${file.reference.bsh.jar}${path.separator}\
mhaupt@1741 96 ${file.reference.snakeyaml.jar}${path.separator}
jlaskey@3 97
jlaskey@3 98 # Set testng verbose level
jlaskey@3 99 # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed)
jlaskey@3 100 # Actually, this is a lie: you can specify -1 and this will put TestNG in
jlaskey@3 101 # debug mode (no longer slicing off stack traces and all)."
jlaskey@3 102
jlaskey@3 103 testng.verbose=2
jlaskey@3 104
jlaskey@3 105 # TestNG listeners - we want to replace TestNG's own JUnit
jlaskey@3 106 # reporter, but want everything else provided by default
jlaskey@3 107 # Unfortunately, we've to clone the other default reporters here.
jlaskey@3 108
jlaskey@3 109 testng.listeners=\
jlaskey@3 110 org.testng.reporters.SuiteHTMLReporter, \
sundar@300 111 org.testng.reporters.TestHTMLReporter, \
jlaskey@3 112 org.testng.reporters.jq.Main, \
jlaskey@3 113 org.testng.reporters.FailedReporter, \
jlaskey@3 114 org.testng.reporters.XMLReporter \
jlaskey@3 115 org.testng.reporters.EmailableReporter, \
jlaskey@3 116 jdk.nashorn.internal.test.framework.JSJUnitReportReporter
jlaskey@3 117
jlaskey@3 118 javac.debug=true
jlaskey@3 119 javac.encoding=ascii
jlaskey@3 120 javac.classpath=\
attila@90 121 ${build.classes.dir}
jlaskey@3 122 javac.test.classpath=\
mhaupt@1353 123 ${build.classes.dir}${path.separator}\
mhaupt@1353 124 ${build.test.classes.dir}${path.separator}\
mhaupt@1741 125 ${file.reference.testng.jar}${path.separator}\
mhaupt@1741 126 ${file.reference.jcommander.jar}${path.separator}\
mhaupt@1741 127 ${file.reference.bsh.jar}${path.separator}\
mhaupt@1741 128 ${file.reference.snakeyaml.jar}
jlaskey@3 129
jlaskey@3 130 meta.inf.dir=${src.dir}/META-INF
jlaskey@3 131
jlaskey@3 132 run.classpath=\
jlaskey@3 133 ${build.classes.dir}
jlaskey@3 134
jlaskey@3 135 # test scripts to run
jlaskey@3 136 test.dir=test
sundar@855 137 test.nosecurity.dir=test/script/nosecurity
jlaskey@3 138 test.script.dir=test/script
jlaskey@3 139 test.basic.dir=test/script/basic
sundar@762 140 test.maptests.dir=test/script/maptests
jlaskey@3 141 test.error.dir=test/script/error
jlaskey@3 142 test.sandbox.dir=test/script/sandbox
sundar@77 143 test.trusted.dir=test/script/trusted
jlaskey@3 144 test.external.dir=test/script/external
jlaskey@3 145 test262.dir=${test.external.dir}/test262
jlaskey@3 146 test262.suite.dir=${test262.dir}/test/suite
kshefov@638 147 testjfx.dir=${test.script.dir}/jfx
attila@963 148 testmarkdown.dir=${test.script.dir}/markdown
jlaskey@3 149
jlaskey@3 150 test-sys-prop.test.dir=${test.dir}
sundar@762 151 test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
jlaskey@3 152 test-sys-prop.test262.suite.dir=${test262.suite.dir}
jlaskey@3 153 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
jlaskey@3 154 test-sys-prop.test.basic.dir=${test.basic.dir}
jlaskey@3 155
sundar@855 156 test-sys-prop-no-security.test.dir=${test.dir}
sundar@855 157 test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir}
sundar@855 158
jlaskey@3 159 # framework root for our script tests
jlaskey@3 160 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
sundar@855 161 test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js
jlaskey@3 162
jlaskey@3 163 # Control the verbosity of ParserTest
jlaskey@3 164 test-sys-prop.parsertest.verbose=false
jlaskey@3 165
jlaskey@3 166 # turn on/off scripting mode for parser tests
jlaskey@3 167 test-sys-prop.parsertest.scripting=true
jlaskey@3 168
jlaskey@3 169 # turn on/off test262 scripts for parser tests
jlaskey@3 170 test-sys-prop.parsertest.test262=false
jlaskey@3 171
jlaskey@3 172 # Control the verbosity of the CompilerTest
jlaskey@3 173 test-sys-prop.compilertest.verbose=false
jlaskey@3 174
jlaskey@3 175 # turn on/off scripting mode for compiler tests
jlaskey@3 176 test-sys-prop.compilertest.scripting=true
jlaskey@3 177
jlaskey@3 178 # turn on/off test262 scripts for compiler tests
jlaskey@3 179 test-sys-prop.compilertest.test262=false
jlaskey@3 180
jlaskey@3 181 # test directory to be excluded.
jlaskey@3 182 test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
jlaskey@3 183
jlaskey@3 184 # run everything that's js in here, without checking file headers for test annotations
jlaskey@3 185 test-sys-prop.test.js.unchecked.dir=${test262.dir}
jlaskey@3 186
jlaskey@3 187 # test root for octane
sundar@19 188 octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
jlaskey@3 189
attila@963 190 # run octane benchmars in separate processes? (recommended)
sundar@25 191 octane-test-sys-prop.separate.process=true
sundar@25 192
jlaskey@3 193 # framework root for octane
jlaskey@3 194 octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
jlaskey@3 195
jlaskey@3 196 # test root for sunspider
attila@963 197 sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0.2/
jlaskey@3 198
jlaskey@3 199 # framework root for sunspider
jlaskey@3 200 sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
jlaskey@3 201
jlaskey@3 202 # list of tests to be excluded
jlaskey@3 203 sunspider-test-sys-prop.test.js.exclude.list=
jlaskey@3 204
jlaskey@3 205 # execute our script tests in shared nashorn context or not?
jlaskey@3 206 test-sys-prop.test.js.shared.context=false
jlaskey@3 207
jlaskey@3 208 # execute test262 tests in shared nashorn context or not?
jlaskey@3 209 test262-test-sys-prop.test.js.shared.context=true
jlaskey@3 210
jlaskey@3 211 # test262 test root
jlaskey@3 212 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
attila@963 213
jlaskey@3 214 # test262 enable/disable strict mode tests
jlaskey@3 215 test262-test-sys-prop.test.js.enable.strict.mode=true
jlaskey@3 216
jlaskey@3 217 # file containing test262 tests to be excluded
jlaskey@3 218 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
jlaskey@3 219
jlaskey@3 220 # list of test262 test dirs to be excluded
jlaskey@3 221 test262-test-sys-prop.test.js.exclude.dir=\
sundar@351 222 ${test262.suite.dir}/intl402/ \
attila@963 223 ${test262.suite.dir}/bestPractice/
jlaskey@3 224
attila@255 225 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
attila@255 226
jlaskey@3 227 # test262 test frameworks
jlaskey@3 228 test262-test-sys-prop.test.js.framework=\
hannesw@769 229 --class-cache-size=10 \
sundar@418 230 --no-java \
sundar@418 231 --no-typed-arrays \
jlaskey@3 232 -timezone=PST \
jlaskey@3 233 ${test.script.dir}/test262.js \
jlaskey@3 234 ${test262.dir}/test/harness/framework.js \
jlaskey@3 235 ${test262.dir}/test/harness/sta.js
jlaskey@3 236
attila@963 237 # testmarkdown test root
attila@963 238 testmarkdown-test-sys-prop.test.js.roots=${testmarkdown.dir}
attila@963 239
attila@963 240 # execute testmarkdown tests in shared nashorn context or not?
attila@963 241 testmarkdown-test-sys-prop.test.js.shared.context=false
attila@963 242
attila@963 243 # framework root for markdown script tests
attila@963 244 testmarkdown-test-sys-prop.test.js.framework=\
attila@963 245 ${test.script.dir}${file.separator}markdown.js
attila@963 246
kshefov@638 247 # testjfx test root
attila@963 248 testjfx-test-sys-prop.test.js.roots=${testjfx.dir}
kshefov@638 249
kshefov@638 250 # execute testjfx tests in shared nashorn context or not?
kshefov@638 251 testjfx-test-sys-prop.test.js.shared.context=false
kshefov@638 252
kshefov@638 253 # framework root for our script tests
kshefov@638 254 testjfx-test-sys-prop.test.js.framework=\
kshefov@638 255 -fx \
kshefov@638 256 ${test.script.dir}${file.separator}jfx.js
kshefov@638 257
mhaupt@1391 258 file.reference.jemmyfx.jar=${test.lib}${file.separator}JemmyFX.jar
mhaupt@1391 259 file.reference.jemmycore.jar=${test.lib}${file.separator}JemmyCore.jar
mhaupt@1391 260 file.reference.jemmyawtinput.jar=${test.lib}${file.separator}JemmyAWTInput.jar
kshefov@638 261 file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
kshefov@638 262 testjfx.run.test.classpath=\
kshefov@638 263 ${file.reference.jemmyfx.jar}${path.separator}\
kshefov@638 264 ${file.reference.jemmycore.jar}${path.separator}\
kshefov@638 265 ${file.reference.jemmyawtinput.jar}${path.separator}\
kshefov@638 266 ${file.reference.testng.jar}${path.separator}\
mhaupt@1741 267 ${file.reference.jcommander.jar}${path.separator}\
mhaupt@1741 268 ${file.reference.bsh.jar}${path.separator}\
mhaupt@1741 269 ${file.reference.snakeyaml.jar}${path.separator}\
kshefov@638 270 ${nashorn.internal.tests.jar}${path.separator}\
kshefov@667 271 ${nashorn.api.tests.jar}
kshefov@638 272
kshefov@638 273 # testjfx VM options for script tests with @fork option
kshefov@638 274 testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
kshefov@638 275
jlaskey@3 276 run.test.classpath=\
mhaupt@1353 277 ${file.reference.testng.jar}${path.separator}\
mhaupt@1741 278 ${file.reference.jcommander.jar}${path.separator}\
mhaupt@1741 279 ${file.reference.bsh.jar}${path.separator}\
mhaupt@1741 280 ${file.reference.snakeyaml.jar}${path.separator}\
mhaupt@1353 281 ${nashorn.internal.tests.jar}${path.separator}\
sundar@77 282 ${nashorn.api.tests.jar}
sundar@77 283
jlaskey@3 284 src.dir=src
jlaskey@3 285 test.src.dir=test/src
jlaskey@3 286
hannesw@562 287 # -Xmx is used for all tests, -Xms only for octane benchmark
mnunez@857 288 run.test.xmx=2G
sundar@37 289 run.test.xms=2G
sundar@37 290
attila@963 291 # uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames,
attila@963 292 # or everything will as of the now drown in lambda forms and be cut off.
attila@963 293 #
attila@963 294 #jfr.args=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath="test_suite.jfr",stackdepth=1024 \
attila@963 295
attila@963 296 jfr.args=
attila@963 297
sundar@293 298 run.test.user.language=tr
sundar@293 299 run.test.user.country=TR
sundar@293 300
attila@963 301 run.test.jvmargs.common=\
attila@963 302 -server \
attila@963 303 -Dfile.encoding=UTF-8 \
attila@963 304 -Duser.language=${run.test.user.language} \
attila@963 305 -Duser.country=${run.test.user.country} \
attila@963 306 -Dnashorn.typeInfo.cacheDir=${build.dir}${file.separator}test${file.separator}type_info_cache \
attila@963 307 ${jfr.args} \
attila@963 308 -XX:+HeapDumpOnOutOfMemoryError
sundar@492 309
sundar@492 310 # turn on assertions for tests
sundar@492 311 run.test.jvmargs.main=${run.test.jvmargs.common} -ea
sundar@293 312
lagergren@1036 313 # Extra jvmargs that might be useful for debugging
lagergren@1036 314 # and performance improvements/monitoring
attila@963 315 #
attila@963 316 # -XX:+UnlockDiagnosticVMOptions
attila@963 317 #
attila@963 318 # turn off compressed class pointers in metaspace
attila@963 319 # -XX:-UseCompressedKlassPointers
attila@963 320 #
attila@963 321 # dump the heap after every GC
attila@963 322 # -XX:+PrintHeapAtGC
attila@963 323 #
attila@963 324 # manually set a metaspace size for class data
attila@963 325 # -XX:ClassMetaspaceSize=300M
attila@963 326 #
attila@963 327 # print out methods compiled
attila@963 328 # -XX:+PrintCompilation
attila@963 329 #
attila@963 330 # print all compiled nmethods with oopmaps and lots of other info
attila@963 331 # -XX:+PrintNMethods
lagergren@1036 332 #
lagergren@1036 333 # activate the generic "UseNewCode" flag to test whatever functionality
lagergren@1036 334 # lies behind it. This is the preferred way to test a, yet flagless,
lagergren@1036 335 # feature in HotSpot - for example, the uncommon trap placement fix
lagergren@1036 336 # was hidden behind this flag before it became the default
lagergren@1036 337 #
lagergren@1036 338 # -XX:+UnlockDiagnosticVMOptions -XX:+UseNewCode
lagergren@1036 339 #
lagergren@1036 340 # Crank up the type profile level to 222, which has some warmup
lagergren@1036 341 # penalties, but produces much better code for JavaScript, where better
lagergren@1036 342 # and more intrusive type profiling is required to get rid of
lagergren@1036 343 # a large amount of unnecessary guard code, that could not otherwise
lagergren@1036 344 # be eliminated
lagergren@1036 345 #
lagergren@1036 346 # -XX:TypeProfileLevel=222
lagergren@1036 347 #
jlaskey@3 348
attila@963 349 # Use best known performance options for octane
lagergren@1036 350 run.test.jvmargs.octane.main=${run.test.jvmargs.common} -XX:TypeProfileLevel=222
attila@963 351
attila@963 352 # Security manager args - make sure that we run with the nashorn.policy that the build creates
attila@963 353 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${build.dir}/nashorn.policy
jlaskey@3 354
sundar@476 355 # VM options for script tests with @fork option
sundar@762 356 test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
hannesw@1341 357 # VM options for no-security script tests with @fork option - same as above but without jvmsecurityargs
hannesw@1341 358 test-sys-prop-no-security.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${run.test.classpath}
sundar@476 359
jlaskey@3 360 # path of rhino.jar for benchmarks
attila@963 361 rhino.dir=
attila@963 362 rhino.jar=${rhino.dir}/js.jar
jlaskey@3 363
jlaskey@3 364 v8.shell=d8
jlaskey@3 365
attila@963 366 # How many iterations should 'ant octane' run for each
attila@963 367 # benchmark
attila@963 368 octane.iterations=25
attila@963 369
attila@963 370 # List of octane tests to run, as properties prefixed with
attila@963 371 # "octane.benchmark." mapping to the benchmark name in
attila@963 372 # the test harness
attila@963 373 #
attila@963 374 # Octane tests that are disabled should have their entire line
attila@963 375 # commented out Tests may be disabled for functionality reasons when
attila@963 376 # they have bugs or when the runtime doesn't handle them (yet)
attila@963 377 octane.benchmark.box2d=box2d
attila@963 378 #octane.benchmark.code-load=code-load
attila@963 379 octane.benchmark.crypto=crypto
attila@963 380 octane.benchmark.deltablue=deltablue
attila@963 381 octane.benchmark.earley-boyer=earley-boyer
attila@963 382 octane.benchmark.gbemu=gbemu
attila@963 383 octane.benchmark.navier-stokes=navier-stokes
attila@963 384 octane.benchmark.mandreel=mandreel
attila@963 385 octane.benchmark.pdfjs=pdfjs
attila@963 386 octane.benchmark.raytrace=raytrace
attila@963 387 octane.benchmark.regexp=regexp
attila@963 388 octane.benchmark.richards=richards
attila@963 389 octane.benchmark.splay=splay
attila@963 390 #octane.benchmark.typescript=typescript
attila@963 391 #octane.benchmark.zlib=zlib
attila@963 392
jlaskey@3 393 #path to rhino jar file
jlaskey@3 394 octaneperf-sys-prop.rhino.jar=${rhino.jar}
jlaskey@3 395
jlaskey@3 396 #timeout for performance tests in minutes
jlaskey@3 397 octaneperf-sys-prop.timeout.value=10
lagergren@111 398
attila@963 399 #how many iterations to run sunspider after warmup
attila@963 400 sunspider.iterations=3000
attila@963 401
attila@963 402 #################
attila@963 403 # code coverage #
attila@963 404 #################
attila@963 405
attila@963 406 #enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
lagergren@111 407 make.code.coverage=false
attila@963 408
attila@963 409 #type of codecoverage; one of static or dynamic. Now only dynamic is supported
lagergren@111 410 jcov=dynamic
attila@963 411
attila@963 412 #naming of CC results
attila@963 413 #NB directory specified in the cc.dir will be cleaned up!!!
lagergren@111 414 cc.dir=${basedir}/../Codecoverage_Nashorn
jlaskey@143 415 cc.result.file.name=CC_${jcov}_nashorn.xml
attila@963 416
attila@963 417 #dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
lagergren@111 418 jcov2.lib.dir=${basedir}/../jcov2/lib
lagergren@111 419 jcov.jar=${jcov2.lib.dir}/jcov.jar
lagergren@111 420 cc.include=jdk\.nashorn\.*
lagergren@111 421 cc.exclude=jdk\.nashorn\.internal\.scripts\.*
jlaskey@143 422 cc.dynamic.genereate.template=true
jlaskey@143 423 cc.template=${cc.dir}/CC_template.xml
lagergren@111 424 cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}

mercurial