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 #
  23 
  24 application.title=nashorn
  25 
  26 # location of JDK embedded ASM sources
  27 jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal
  28 
  29 # source and target levels
  30 build.compiler=modern
  31 javac.source=1.7
  32 javac.target=1.7
  33 
  34 # nashorn version information
  35 nashorn.version=0.1
  36 nashorn.fullversion=0.1
  37 nashorn.product.name=Oracle Nashorn
  38 
  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
  44 
  45 # nashorn Shell tool
  46 nashorn.shell.tool=jdk.nashorn.tools.Shell
  47 
  48 # nasgen tool
  49 nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main
  50 
  51 # parallel test runner tool
  52 parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner
  53 
  54 # test classes directory
  55 build.test.classes.dir=${build.dir}/test/classes
  56 # test results directory
  57 build.test.results.dir=${build.dir}/test/reports
  58 
  59 # This directory is removed when the project is cleaned:
  60 dist.dir=dist
  61 dist.jar=${dist.dir}/nashorn.jar
  62 dist.javadoc.dir=${dist.dir}/javadoc
  63 
  64 # jars refererred
  65 file.reference.testng.jar=test/lib/testng.jar
  66 
  67 # Set testng verbose level
  68 # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) 
  69 # Actually, this is a lie: you can specify -1 and this will put TestNG in 
  70 # debug mode (no longer slicing off stack traces and all)."
  71 
  72 testng.verbose=2
  73 
  74 # TestNG listeners - we want to replace TestNG's own JUnit
  75 # reporter, but want everything else provided by default
  76 # Unfortunately, we've to clone the other default reporters here.
  77 
  78 testng.listeners=\
  79  org.testng.reporters.SuiteHTMLReporter, \
  80  org.testng.reporters.jq.Main, \
  81  org.testng.reporters.FailedReporter, \
  82  org.testng.reporters.XMLReporter \
  83  org.testng.reporters.EmailableReporter, \
  84  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
  85 
  86 # Define the version of Dynalink that is used. Version types are either
  87 # 'snapshot' or 'release'. When it is 'snapshot', the version must have
  88 # "-SNAPSHOT" suffix and the jar version will have a timestamp in it. When
  89 # it's 'release', the version has no suffix, and the jar version is 
  90 # identical to version - fun with Maven central.
  91 dynalink.version=0.5-SNAPSHOT
  92 dynalink.version.type=snapshot
  93 dynalink.jar.version=0.5-20121218.140128-11
  94 dynalink.dir.name=dynalink
  95 dynalink.dir=build/${dynalink.dir.name}
  96 dynalink.jar=${dynalink.dir}/dynalink.jar
  97 
  98 javac.debug=true
  99 javac.encoding=ascii
 100 javac.classpath=\
 101     ${build.classes.dir}:\
 102     ${dynalink.jar}
 103 javac.test.classpath=\
 104     ${build.classes.dir}:\
 105     ${build.test.classes.dir}:\
 106     ${file.reference.testng.jar}
 107 
 108 meta.inf.dir=${src.dir}/META-INF
 109 
 110 run.classpath=\
 111     ${build.classes.dir}
 112 
 113 # test scripts to run
 114 test.dir=test
 115 test.script.dir=test/script
 116 test.basic.dir=test/script/basic
 117 test.error.dir=test/script/error
 118 test.sandbox.dir=test/script/sandbox
 119 test.external.dir=test/script/external
 120 test262.dir=${test.external.dir}/test262
 121 test262.suite.dir=${test262.dir}/test/suite
 122 
 123 test-sys-prop.test.dir=${test.dir}
 124 test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir}
 125 test-sys-prop.test262.suite.dir=${test262.suite.dir}
 126 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
 127 test-sys-prop.test.basic.dir=${test.basic.dir}
 128 
 129 # framework root for our script tests
 130 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
 131 
 132 # Control the verbosity of ParserTest
 133 test-sys-prop.parsertest.verbose=false
 134 
 135 # turn on/off scripting mode for parser tests
 136 test-sys-prop.parsertest.scripting=true
 137 
 138 # turn on/off test262 scripts for parser tests
 139 test-sys-prop.parsertest.test262=false
 140 
 141 # Control the verbosity of the CompilerTest
 142 test-sys-prop.compilertest.verbose=false
 143 
 144 # turn on/off scripting mode for compiler tests
 145 test-sys-prop.compilertest.scripting=true
 146 
 147 # turn on/off test262 scripts for compiler tests
 148 test-sys-prop.compilertest.test262=false
 149 
 150 # test directory to be excluded.
 151 test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir}
 152 
 153 # run everything that's js in here, without checking file headers for test annotations
 154 test-sys-prop.test.js.unchecked.dir=${test262.dir}
 155 
 156 # test root for octane
 157 octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/
 158 
 159 # framework root for octane
 160 octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js
 161 
 162 # list of tests to be excluded
 163 octane-test-sys-prop.test.js.exclude.list=base.js
 164 
 165 # test root for sunspider
 166 sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/tests/sunspider-1.0/
 167 
 168 # framework root for sunspider
 169 sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js
 170 
 171 # list of tests to be excluded
 172 sunspider-test-sys-prop.test.js.exclude.list=
 173 
 174 # execute our script tests in shared nashorn context or not?
 175 test-sys-prop.test.js.shared.context=false
 176 
 177 # execute test262 tests in shared nashorn context or not?
 178 test262-test-sys-prop.test.js.shared.context=true
 179 
 180 # test262 test root
 181 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
 182 # test262 enable/disable strict mode tests
 183 test262-test-sys-prop.test.js.enable.strict.mode=true
 184 
 185 # file containing test262 tests to be excluded
 186 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
 187 
 188 # list of test262 test dirs to be excluded
 189 test262-test-sys-prop.test.js.exclude.dir=\
 190     ${test262.suite.dir}/intl402/
 191 
 192 # test262 test frameworks
 193 test262-test-sys-prop.test.js.framework=\
 194     -timezone=PST \
 195     ${test.script.dir}/test262.js \
 196     ${test262.dir}/test/harness/framework.js \
 197     ${test262.dir}/test/harness/sta.js
 198 
 199 run.test.classpath=\
 200     ${file.reference.testng.jar}:\
 201     ${build.test.classes.dir}
 202 src.dir=src
 203 test.src.dir=test/src
 204 
 205 #  -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
 206 # add '-Dtest.js.outofprocess' to run each test in a new sub-process
 207 run.test.jvmargs=-server -Xmx3G -XX:-TieredCompilation -esa -ea -Dnashorn.debug=true -Dfile.encoding=UTF-8 
 208 #-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
 209 run.test.jvmargs.octane=-Xms2G -Xmx2G ${run.test.jvmargs}
 210 
 211 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
 212 
 213 # path of rhino.jar for benchmarks
 214 rhino.jar=
 215 
 216 v8.shell=d8
 217 
 218 #path to rhino jar file
 219 octaneperf-sys-prop.rhino.jar=${rhino.jar}
 220 
 221 #timeout for performance tests in minutes
 222 octaneperf-sys-prop.timeout.value=10
--- EOF ---