make/project.properties

Thu, 22 May 2014 11:12:29 +0200

author
mnunez
date
Thu, 22 May 2014 11:12:29 +0200
changeset 857
17ecefeb50dd
parent 855
ffdb43036807
child 891
1deaea7f4fef
permissions
-rw-r--r--

8028615: jdk.nashorn.x3::some.serious.failure needs more memory to run
Reviewed-by: attila, sundar
Contributed-by: sergey.lugovoy@oracle.com

     1 #
     2 # Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 # 
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     8 # 
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 # 
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 # 
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    22 #
    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
    56 # nashorn test jar - internal tests jar and api tests jar
    57 nashorn.internal.tests.jar=${build.dir}/nashorn-internal-tests.jar
    58 nashorn.api.tests.jar=${build.dir}/nashorn-api-tests.jar
    60 # test results directory
    61 build.test.results.dir=${build.dir}/test/reports
    62 build.nosecurity.test.results.dir=${build.dir}/test/nosecurity/reports
    64 # This directory is removed when the project is cleaned:
    65 dist.dir=dist
    66 dist.jar=${dist.dir}/nashorn.jar
    67 dist.javadoc.dir=${dist.dir}/javadoc
    69 # nashorn javafx shell
    70 fxshell.tool = jdk.nashorn.tools.FXShell
    71 fxshell.classes.dir = ${build.dir}/fxshell/classes
    72 fxshell.dir = tools/fxshell
    73 fxshell.jar = ${dist.dir}/nashornfx.jar
    75 # jars refererred
    76 file.reference.testng.jar=test/lib/testng.jar
    78 # Set testng verbose level
    79 # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) 
    80 # Actually, this is a lie: you can specify -1 and this will put TestNG in 
    81 # debug mode (no longer slicing off stack traces and all)."
    83 testng.verbose=2
    85 # TestNG listeners - we want to replace TestNG's own JUnit
    86 # reporter, but want everything else provided by default
    87 # Unfortunately, we've to clone the other default reporters here.
    89 testng.listeners=\
    90  org.testng.reporters.SuiteHTMLReporter, \
    91  org.testng.reporters.TestHTMLReporter, \
    92  org.testng.reporters.jq.Main, \
    93  org.testng.reporters.FailedReporter, \
    94  org.testng.reporters.XMLReporter \
    95  org.testng.reporters.EmailableReporter, \
    96  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
    98 javac.debug=true
    99 javac.encoding=ascii
   100 javac.classpath=\
   101     ${build.classes.dir}
   102 javac.test.classpath=\
   103     ${build.classes.dir}:\
   104     ${build.test.classes.dir}:\
   105     ${file.reference.testng.jar}
   107 meta.inf.dir=${src.dir}/META-INF
   109 run.classpath=\
   110     ${build.classes.dir}
   112 # test scripts to run
   113 test.dir=test
   114 test.nosecurity.dir=test/script/nosecurity
   115 test.script.dir=test/script
   116 test.basic.dir=test/script/basic
   117 test.maptests.dir=test/script/maptests
   118 test.error.dir=test/script/error
   119 test.sandbox.dir=test/script/sandbox
   120 test.trusted.dir=test/script/trusted
   121 test.external.dir=test/script/external
   122 test262.dir=${test.external.dir}/test262
   123 test262.suite.dir=${test262.dir}/test/suite
   124 testjfx.dir=${test.script.dir}/jfx
   126 test-sys-prop.test.dir=${test.dir}
   127 test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
   128 test-sys-prop.test262.suite.dir=${test262.suite.dir}
   129 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
   130 test-sys-prop.test.basic.dir=${test.basic.dir}
   132 test-sys-prop-no-security.test.dir=${test.dir}
   133 test-sys-prop-no-security.test.js.roots=${test.nosecurity.dir}
   135 # framework root for our script tests
   136 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
   137 test-sys-prop-no-security.test.js.framework=${test.script.dir}/assert.js
   139 # Control the verbosity of ParserTest
   140 test-sys-prop.parsertest.verbose=false
   142 # turn on/off scripting mode for parser tests
   143 test-sys-prop.parsertest.scripting=true
   145 # turn on/off test262 scripts for parser tests
   146 test-sys-prop.parsertest.test262=false
   148 # Control the verbosity of the CompilerTest
   149 test-sys-prop.compilertest.verbose=false
   151 # turn on/off scripting mode for compiler tests
   152 test-sys-prop.compilertest.scripting=true
   154 # turn on/off test262 scripts for compiler tests
   155 test-sys-prop.compilertest.test262=false
   157 # test directory to be excluded.
   158 test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
   160 # run everything that's js in here, without checking file headers for test annotations
   161 test-sys-prop.test.js.unchecked.dir=${test262.dir}
   163 # test root for octane
   164 octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
   166 # run octane benchmars in separate processes?
   167 octane-test-sys-prop.separate.process=true
   169 # framework root for octane
   170 octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
   172 # list of tests to be excluded
   173 # mandreel excluded due to OOM
   174 octane-test-sys-prop.test.js.exclude.list=\
   175     base.js \
   176     run.js  \
   177     mandreel.js
   179 # test root for sunspider
   180 sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
   182 # framework root for sunspider
   183 sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
   185 # list of tests to be excluded
   186 sunspider-test-sys-prop.test.js.exclude.list=
   188 # execute our script tests in shared nashorn context or not?
   189 test-sys-prop.test.js.shared.context=false
   191 # execute test262 tests in shared nashorn context or not?
   192 test262-test-sys-prop.test.js.shared.context=true
   194 # test262 test root
   195 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
   196 # test262 enable/disable strict mode tests
   197 test262-test-sys-prop.test.js.enable.strict.mode=true
   199 # file containing test262 tests to be excluded
   200 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
   202 # list of test262 test dirs to be excluded
   203 test262-test-sys-prop.test.js.exclude.dir=\
   204     ${test262.suite.dir}/intl402/ \
   205     ${test262.suite.dir}/bestPractice/ 
   207 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
   209 # test262 test frameworks
   210 test262-test-sys-prop.test.js.framework=\
   211     --class-cache-size=10 \
   212     --no-java \
   213     --no-typed-arrays \
   214     -timezone=PST \
   215     ${test.script.dir}/test262.js \
   216     ${test262.dir}/test/harness/framework.js \
   217     ${test262.dir}/test/harness/sta.js
   219 # testjfx test root
   220 testjfx-test-sys-prop.test.js.roots=${testjfx.dir}   
   222 # execute testjfx tests in shared nashorn context or not?
   223 testjfx-test-sys-prop.test.js.shared.context=false
   225 # framework root for our script tests
   226 testjfx-test-sys-prop.test.js.framework=\
   227     -fx \
   228     ${test.script.dir}${file.separator}jfx.js
   230 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
   231 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar
   232 file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar
   233 file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
   234 testjfx.run.test.classpath=\
   235     ${file.reference.jemmyfx.jar}${path.separator}\
   236     ${file.reference.jemmycore.jar}${path.separator}\
   237     ${file.reference.jemmyawtinput.jar}${path.separator}\
   238     ${file.reference.testng.jar}${path.separator}\
   239     ${nashorn.internal.tests.jar}${path.separator}\
   240     ${nashorn.api.tests.jar}
   242 # testjfx VM options for script tests with @fork option
   243 testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
   245 run.test.classpath=\
   246     ${file.reference.testng.jar}:\
   247     ${nashorn.internal.tests.jar}:\
   248     ${nashorn.api.tests.jar}
   250 src.dir=src
   251 test.src.dir=test/src
   253 # -Xmx is used for all tests, -Xms only for octane benchmark
   254 run.test.xmx=2G
   255 run.test.xms=2G
   257 run.test.user.language=tr
   258 run.test.user.country=TR
   260 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
   262 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
   263 # -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
   265 # turn on assertions for tests
   266 run.test.jvmargs.main=${run.test.jvmargs.common} -ea
   268 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
   269 run.test.jvmargs.octane.main=${run.test.jvmargs.common}
   271 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
   273 # VM options for script tests with @fork option
   274 test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
   276 # path of rhino.jar for benchmarks
   277 rhino.jar=
   279 v8.shell=d8
   281 #path to rhino jar file
   282 octaneperf-sys-prop.rhino.jar=${rhino.jar}
   284 #timeout for performance tests in minutes
   285 octaneperf-sys-prop.timeout.value=10
   287 ################
   288 # codecoverage #
   289 ################
   290 	#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
   291 make.code.coverage=false
   292 	#type of codecoverage; one of static or dynamic. Now only dynamic is supported
   293 jcov=dynamic
   294 	#naming of CC results
   295 	#NB directory specified in the cc.dir will be cleaned up!!!
   296 cc.dir=${basedir}/../Codecoverage_Nashorn
   297 cc.result.file.name=CC_${jcov}_nashorn.xml
   298 	#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
   299 jcov2.lib.dir=${basedir}/../jcov2/lib
   300 jcov.jar=${jcov2.lib.dir}/jcov.jar
   301 cc.include=jdk\.nashorn\.*
   302 cc.exclude=jdk\.nashorn\.internal\.scripts\.*
   303 cc.dynamic.genereate.template=true
   304 cc.template=${cc.dir}/CC_template.xml
   305 cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}

mercurial