make/project.properties

Tue, 02 Jun 2015 14:35:03 +0200

author
mhaupt
date
Tue, 02 Jun 2015 14:35:03 +0200
changeset 1391
7b10faf739fd
parent 1353
b9dda83d984b
child 1490
d85f981c8cf8
child 1550
e9ea7010825b
permissions
-rw-r--r--

8080275: transparently download testng.jar for Nashorn testing
Summary: Instead of asking the user to manually download and install testng.jar, automate the process via "ant externals".
Reviewed-by: hannesw, sundar

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

mercurial