jlaskey@3: # jlaskey@7: # Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. jlaskey@3: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jlaskey@3: # jlaskey@3: # This code is free software; you can redistribute it and/or modify it jlaskey@3: # under the terms of the GNU General Public License version 2 only, as jlaskey@3: # published by the Free Software Foundation. jlaskey@3: # jlaskey@3: # This code is distributed in the hope that it will be useful, but WITHOUT jlaskey@3: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jlaskey@3: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jlaskey@3: # version 2 for more details (a copy is included in the LICENSE file that jlaskey@3: # accompanied this code). jlaskey@3: # jlaskey@3: # You should have received a copy of the GNU General Public License version jlaskey@3: # 2 along with this work; if not, write to the Free Software Foundation, jlaskey@3: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jlaskey@3: # jlaskey@3: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jlaskey@3: # or visit www.oracle.com if you need additional information or have any jlaskey@3: # questions. jlaskey@3: # jlaskey@3: jlaskey@3: application.title=nashorn jlaskey@3: sundar@10: # location of JDK embedded ASM sources sundar@10: jdk.asm.src.dir=../jdk/src/share/classes/jdk/internal sundar@10: jlaskey@3: # source and target levels jlaskey@3: build.compiler=modern jlaskey@3: javac.source=1.7 jlaskey@3: javac.target=1.7 jlaskey@3: jlaskey@3: # nashorn version information jlaskey@3: nashorn.version=0.1 jlaskey@3: nashorn.fullversion=0.1 jlaskey@3: nashorn.product.name=Oracle Nashorn jlaskey@3: jlaskey@3: # This directory is removed when the project is cleaned: jlaskey@3: build.dir=build jlaskey@3: build.classes.dir=${build.dir}/classes jlaskey@3: build.zip=${build.dir}/nashorn.zip jlaskey@3: build.gzip=${build.dir}/nashorn.tar.gz jlaskey@3: jlaskey@3: # nashorn Shell tool jlaskey@3: nashorn.shell.tool=jdk.nashorn.tools.Shell jlaskey@3: jlaskey@3: # nasgen tool jlaskey@3: nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main jlaskey@3: jlaskey@3: # parallel test runner tool jlaskey@3: parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner jlaskey@3: jlaskey@3: # test classes directory jlaskey@3: build.test.classes.dir=${build.dir}/test/classes jlaskey@3: # test results directory jlaskey@3: build.test.results.dir=${build.dir}/test/reports jlaskey@3: jlaskey@3: # This directory is removed when the project is cleaned: jlaskey@3: dist.dir=dist jlaskey@3: dist.jar=${dist.dir}/nashorn.jar jlaskey@3: dist.javadoc.dir=${dist.dir}/javadoc jlaskey@3: jlaskey@3: # jars refererred jlaskey@3: file.reference.testng.jar=test/lib/testng.jar jlaskey@3: jlaskey@3: # Set testng verbose level jlaskey@3: # From TestNG docs: "the verbosity level (0 to 10 where 10 is most detailed) jlaskey@3: # Actually, this is a lie: you can specify -1 and this will put TestNG in jlaskey@3: # debug mode (no longer slicing off stack traces and all)." jlaskey@3: jlaskey@3: testng.verbose=2 jlaskey@3: jlaskey@3: # TestNG listeners - we want to replace TestNG's own JUnit jlaskey@3: # reporter, but want everything else provided by default jlaskey@3: # Unfortunately, we've to clone the other default reporters here. jlaskey@3: jlaskey@3: testng.listeners=\ jlaskey@3: org.testng.reporters.SuiteHTMLReporter, \ jlaskey@3: org.testng.reporters.jq.Main, \ jlaskey@3: org.testng.reporters.FailedReporter, \ jlaskey@3: org.testng.reporters.XMLReporter \ jlaskey@3: org.testng.reporters.EmailableReporter, \ jlaskey@3: jdk.nashorn.internal.test.framework.JSJUnitReportReporter jlaskey@3: jlaskey@3: # Define the version of Dynalink that is used. Version types are either jlaskey@3: # 'snapshot' or 'release'. When it is 'snapshot', the version must have jlaskey@3: # "-SNAPSHOT" suffix and the jar version will have a timestamp in it. When jlaskey@3: # it's 'release', the version has no suffix, and the jar version is jlaskey@3: # identical to version - fun with Maven central. jlaskey@3: dynalink.version=0.5-SNAPSHOT jlaskey@3: dynalink.version.type=snapshot jlaskey@3: dynalink.jar.version=0.5-20121218.140128-11 jlaskey@3: dynalink.dir.name=dynalink jlaskey@3: dynalink.dir=build/${dynalink.dir.name} jlaskey@3: dynalink.jar=${dynalink.dir}/dynalink.jar jlaskey@3: jlaskey@3: javac.debug=true jlaskey@3: javac.encoding=ascii jlaskey@3: javac.classpath=\ jlaskey@3: ${build.classes.dir}:\ jlaskey@3: ${dynalink.jar} jlaskey@3: javac.test.classpath=\ jlaskey@3: ${build.classes.dir}:\ jlaskey@3: ${build.test.classes.dir}:\ jlaskey@3: ${file.reference.testng.jar} jlaskey@3: jlaskey@3: meta.inf.dir=${src.dir}/META-INF jlaskey@3: jlaskey@3: run.classpath=\ jlaskey@3: ${build.classes.dir} jlaskey@3: jlaskey@3: # test scripts to run jlaskey@3: test.dir=test jlaskey@3: test.script.dir=test/script jlaskey@3: test.basic.dir=test/script/basic jlaskey@3: test.error.dir=test/script/error jlaskey@3: test.sandbox.dir=test/script/sandbox jlaskey@3: test.external.dir=test/script/external jlaskey@3: test262.dir=${test.external.dir}/test262 jlaskey@3: test262.suite.dir=${test262.dir}/test/suite jlaskey@3: jlaskey@3: test-sys-prop.test.dir=${test.dir} jlaskey@3: test-sys-prop.test.js.roots=${test.basic.dir} ${test.error.dir} ${test.sandbox.dir} jlaskey@3: test-sys-prop.test262.suite.dir=${test262.suite.dir} jlaskey@3: test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases jlaskey@3: test-sys-prop.test.basic.dir=${test.basic.dir} jlaskey@3: jlaskey@3: # framework root for our script tests jlaskey@3: test-sys-prop.test.js.framework=${test.script.dir}/assert.js jlaskey@3: jlaskey@3: # Control the verbosity of ParserTest jlaskey@3: test-sys-prop.parsertest.verbose=false jlaskey@3: jlaskey@3: # turn on/off scripting mode for parser tests jlaskey@3: test-sys-prop.parsertest.scripting=true jlaskey@3: jlaskey@3: # turn on/off test262 scripts for parser tests jlaskey@3: test-sys-prop.parsertest.test262=false jlaskey@3: jlaskey@3: # Control the verbosity of the CompilerTest jlaskey@3: test-sys-prop.compilertest.verbose=false jlaskey@3: jlaskey@3: # turn on/off scripting mode for compiler tests jlaskey@3: test-sys-prop.compilertest.scripting=true jlaskey@3: jlaskey@3: # turn on/off test262 scripts for compiler tests jlaskey@3: test-sys-prop.compilertest.test262=false jlaskey@3: jlaskey@3: # test directory to be excluded. jlaskey@3: test-sys-prop.test.js.exclude.dir=${test.script.dir}/currently-failing ${test.external.dir} jlaskey@3: jlaskey@3: # run everything that's js in here, without checking file headers for test annotations jlaskey@3: test-sys-prop.test.js.unchecked.dir=${test262.dir} jlaskey@3: jlaskey@3: # test root for octane jlaskey@3: octane-test-sys-prop.test.js.roots=${test.external.dir}/octane/benchmarks jlaskey@3: jlaskey@3: # framework root for octane jlaskey@3: octane-test-sys-prop.test.js.framework=${test.basic.dir}/run-octane.js jlaskey@3: jlaskey@3: # list of tests to be excluded jlaskey@3: octane-test-sys-prop.test.js.exclude.list=base.js jlaskey@3: jlaskey@3: # test root for sunspider jlaskey@3: sunspider-test-sys-prop.test.js.roots=${test.external.dir}/sunspider/ jlaskey@3: jlaskey@3: # framework root for sunspider jlaskey@3: sunspider-test-sys-prop.test.js.framework=${test.basic.dir}/runsunspider.js jlaskey@3: jlaskey@3: # list of tests to be excluded jlaskey@3: sunspider-test-sys-prop.test.js.exclude.list= jlaskey@3: jlaskey@3: # execute our script tests in shared nashorn context or not? jlaskey@3: test-sys-prop.test.js.shared.context=false jlaskey@3: jlaskey@3: # execute test262 tests in shared nashorn context or not? jlaskey@3: test262-test-sys-prop.test.js.shared.context=true jlaskey@3: jlaskey@3: # test262 test root jlaskey@3: test262-test-sys-prop.test.js.roots=${test262.suite.dir} jlaskey@3: # test262 enable/disable strict mode tests jlaskey@3: test262-test-sys-prop.test.js.enable.strict.mode=true jlaskey@3: jlaskey@3: # file containing test262 tests to be excluded jlaskey@3: # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml jlaskey@3: jlaskey@3: # list of test262 test dirs to be excluded jlaskey@3: test262-test-sys-prop.test.js.exclude.dir=\ jlaskey@3: ${test262.suite.dir}/intl402/ jlaskey@3: jlaskey@3: # test262 test frameworks jlaskey@3: test262-test-sys-prop.test.js.framework=\ jlaskey@3: -timezone=PST \ jlaskey@3: ${test.script.dir}/test262.js \ jlaskey@3: ${test262.dir}/test/harness/framework.js \ jlaskey@3: ${test262.dir}/test/harness/sta.js jlaskey@3: jlaskey@3: run.test.classpath=\ jlaskey@3: ${file.reference.testng.jar}:\ jlaskey@3: ${build.test.classes.dir} jlaskey@3: src.dir=src jlaskey@3: test.src.dir=test/src jlaskey@3: jlaskey@3: # -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods jlaskey@3: # add '-Dtest.js.outofprocess' to run each test in a new sub-process jlaskey@3: run.test.jvmargs=-server -Xmx3G -XX:-TieredCompilation -esa -ea -Dnashorn.debug=true -Dfile.encoding=UTF-8 jlaskey@3: #-XX:+HeapDumpOnOutOfMemoryError -XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M jlaskey@3: run.test.jvmargs.octane=-Xms2G -Xmx2G ${run.test.jvmargs} jlaskey@3: jlaskey@3: run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy jlaskey@3: jlaskey@3: # path of rhino.jar for benchmarks jlaskey@3: rhino.jar= jlaskey@3: jlaskey@3: v8.shell=d8 jlaskey@3: jlaskey@3: #path to rhino jar file jlaskey@3: octaneperf-sys-prop.rhino.jar=${rhino.jar} jlaskey@3: jlaskey@3: #timeout for performance tests in minutes jlaskey@3: octaneperf-sys-prop.timeout.value=10