make/project.properties

Thu, 23 May 2013 13:36:49 +0200

author
attila
date
Thu, 23 May 2013 13:36:49 +0200
changeset 288
704bc91a0c41
parent 266
64ef1aeaeb4e
child 293
751cfefff5eb
permissions
-rw-r--r--

8015278: Revert accidental changes to build.xml
Reviewed-by: jlaskey, lagergren

     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
    63 # This directory is removed when the project is cleaned:
    64 dist.dir=dist
    65 dist.jar=${dist.dir}/nashorn.jar
    66 dist.javadoc.dir=${dist.dir}/javadoc
    68 # nashorn javafx shell
    69 fxshell.tool = jdk.nashorn.tools.FXShell
    70 fxshell.classes.dir = ${build.dir}/fxshell/classes
    71 fxshell.dir = tools/fxshell
    72 fxshell.jar = ${dist.dir}/nashornfx.jar
    74 # jars refererred
    75 file.reference.testng.jar=test/lib/testng.jar
    77 # Set testng verbose level
    78 # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) 
    79 # Actually, this is a lie: you can specify -1 and this will put TestNG in 
    80 # debug mode (no longer slicing off stack traces and all)."
    82 testng.verbose=2
    84 # TestNG listeners - we want to replace TestNG's own JUnit
    85 # reporter, but want everything else provided by default
    86 # Unfortunately, we've to clone the other default reporters here.
    88 testng.listeners=\
    89  org.testng.reporters.SuiteHTMLReporter, \
    90  org.testng.reporters.jq.Main, \
    91  org.testng.reporters.FailedReporter, \
    92  org.testng.reporters.XMLReporter \
    93  org.testng.reporters.EmailableReporter, \
    94  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
    96 javac.debug=true
    97 javac.encoding=ascii
    98 javac.classpath=\
    99     ${build.classes.dir}
   100 javac.test.classpath=\
   101     ${build.classes.dir}:\
   102     ${build.test.classes.dir}:\
   103     ${file.reference.testng.jar}
   105 meta.inf.dir=${src.dir}/META-INF
   107 run.classpath=\
   108     ${build.classes.dir}
   110 # test scripts to run
   111 test.dir=test
   112 test.script.dir=test/script
   113 test.basic.dir=test/script/basic
   114 test.error.dir=test/script/error
   115 test.sandbox.dir=test/script/sandbox
   116 test.trusted.dir=test/script/trusted
   117 test.external.dir=test/script/external
   118 test262.dir=${test.external.dir}/test262
   119 test262.suite.dir=${test262.dir}/test/suite
   121 test-sys-prop.test.dir=${test.dir}
   122 test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
   123 test-sys-prop.test262.suite.dir=${test262.suite.dir}
   124 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
   125 test-sys-prop.test.basic.dir=${test.basic.dir}
   127 # framework root for our script tests
   128 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
   130 # Control the verbosity of ParserTest
   131 test-sys-prop.parsertest.verbose=false
   133 # turn on/off scripting mode for parser tests
   134 test-sys-prop.parsertest.scripting=true
   136 # turn on/off test262 scripts for parser tests
   137 test-sys-prop.parsertest.test262=false
   139 # Control the verbosity of the CompilerTest
   140 test-sys-prop.compilertest.verbose=false
   142 # turn on/off scripting mode for compiler tests
   143 test-sys-prop.compilertest.scripting=true
   145 # turn on/off test262 scripts for compiler tests
   146 test-sys-prop.compilertest.test262=false
   148 # test directory to be excluded.
   149 test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
   151 # run everything that's js in here, without checking file headers for test annotations
   152 test-sys-prop.test.js.unchecked.dir=${test262.dir}
   154 # test root for octane
   155 octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
   157 # run octane benchmars in separate processes?
   158 octane-test-sys-prop.separate.process=true
   160 # framework root for octane
   161 octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
   163 # list of tests to be excluded
   164 # mandreel excluded due to OOM
   165 octane-test-sys-prop.test.js.exclude.list=\
   166     base.js \
   167     run.js  \
   168     mandreel.js
   170 # test root for sunspider
   171 sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
   173 # framework root for sunspider
   174 sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
   176 # list of tests to be excluded
   177 sunspider-test-sys-prop.test.js.exclude.list=
   179 # execute our script tests in shared nashorn context or not?
   180 test-sys-prop.test.js.shared.context=false
   182 # execute test262 tests in shared nashorn context or not?
   183 test262-test-sys-prop.test.js.shared.context=true
   185 # test262 test root
   186 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
   187 # test262 enable/disable strict mode tests
   188 test262-test-sys-prop.test.js.enable.strict.mode=true
   190 # file containing test262 tests to be excluded
   191 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
   193 # list of test262 test dirs to be excluded
   194 test262-test-sys-prop.test.js.exclude.dir=\
   195     ${test262.suite.dir}/intl402/
   197 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
   199 # test262 test frameworks
   200 test262-test-sys-prop.test.js.framework=\
   201     -timezone=PST \
   202     ${test.script.dir}/test262.js \
   203     ${test262.dir}/test/harness/framework.js \
   204     ${test262.dir}/test/harness/sta.js
   206 run.test.classpath=\
   207     ${file.reference.testng.jar}:\
   208     ${nashorn.internal.tests.jar}:\
   209     ${nashorn.api.tests.jar}
   211 src.dir=src
   212 test.src.dir=test/src
   214 run.test.xmx=3G
   215 run.test.xms=2G
   217 #  -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
   218 # add '-Dtest.js.outofprocess' to run each test in a new sub-process
   219 run.test.jvmargs.main=-server -Xmx${run.test.xmx} -XX:+TieredCompilation -ea -Dfile.encoding=UTF-8
   220 #-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
   221 run.test.jvmargs.octane.main=-Xms${run.test.xms} ${run.test.jvmargs.main}
   223 run.test.jvmsecurityargs=-Xverify:all -Djava.security.properties=${basedir}/make/java.security.override -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
   225 # path of rhino.jar for benchmarks
   226 rhino.jar=
   228 v8.shell=d8
   230 #path to rhino jar file
   231 octaneperf-sys-prop.rhino.jar=${rhino.jar}
   233 #timeout for performance tests in minutes
   234 octaneperf-sys-prop.timeout.value=10
   236 ################
   237 # codecoverage #
   238 ################
   239 	#enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
   240 make.code.coverage=false
   241 	#type of codecoverage; one of static or dynamic. Now only dynamic is supported
   242 jcov=dynamic
   243 	#naming of CC results
   244 	#NB directory specified in the cc.dir will be cleaned up!!!
   245 cc.dir=${basedir}/../Codecoverage_Nashorn
   246 cc.result.file.name=CC_${jcov}_nashorn.xml
   247 	#dynamic CC parameters; please redefine in the ${user.home}/.nashorn.project.local.properties
   248 jcov2.lib.dir=${basedir}/../jcov2/lib
   249 jcov.jar=${jcov2.lib.dir}/jcov.jar
   250 cc.include=jdk\.nashorn\.*
   251 cc.exclude=jdk\.nashorn\.internal\.scripts\.*
   252 cc.dynamic.genereate.template=true
   253 cc.template=${cc.dir}/CC_template.xml
   254 cc.dynamic.args=-javaagent:${jcov.jar}=include=${cc.include},exclude=${cc.exclude},type=all,verbose=0,file=${cc.dir}/${cc.result.file.name}

mercurial