make/project.properties

Print this page
rev 751 : 8033763: Add tests to assert map identity of certain objects
Reviewed-by: hannesw, lagergren
rev 758 : 8021350: Share script classes between threads/globals within context
Reviewed-by: lagergren, sundar


  95  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
  96 
  97 javac.debug=true
  98 javac.encoding=ascii
  99 javac.classpath=\
 100     ${build.classes.dir}
 101 javac.test.classpath=\
 102     ${build.classes.dir}:\
 103     ${build.test.classes.dir}:\
 104     ${file.reference.testng.jar}
 105 
 106 meta.inf.dir=${src.dir}/META-INF
 107 
 108 run.classpath=\
 109     ${build.classes.dir}
 110 
 111 # test scripts to run
 112 test.dir=test
 113 test.script.dir=test/script
 114 test.basic.dir=test/script/basic

 115 test.error.dir=test/script/error
 116 test.sandbox.dir=test/script/sandbox
 117 test.trusted.dir=test/script/trusted
 118 test.external.dir=test/script/external
 119 test262.dir=${test.external.dir}/test262
 120 test262.suite.dir=${test262.dir}/test/suite
 121 testjfx.dir=${test.script.dir}/jfx
 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} ${test.trusted.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


 184 # execute test262 tests in shared nashorn context or not?
 185 test262-test-sys-prop.test.js.shared.context=true
 186 
 187 # test262 test root
 188 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
 189 # test262 enable/disable strict mode tests
 190 test262-test-sys-prop.test.js.enable.strict.mode=true
 191 
 192 # file containing test262 tests to be excluded
 193 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
 194 
 195 # list of test262 test dirs to be excluded
 196 test262-test-sys-prop.test.js.exclude.dir=\
 197     ${test262.suite.dir}/intl402/ \
 198     ${test262.suite.dir}/bestPractice/ 
 199 
 200 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
 201 
 202 # test262 test frameworks
 203 test262-test-sys-prop.test.js.framework=\
 204     --class-cache-size=0 \
 205     --no-java \
 206     --no-typed-arrays \
 207     -timezone=PST \
 208     ${test.script.dir}/test262.js \
 209     ${test262.dir}/test/harness/framework.js \
 210     ${test262.dir}/test/harness/sta.js
 211 
 212 # testjfx test root
 213 testjfx-test-sys-prop.test.js.roots=${testjfx.dir}   
 214 
 215 # execute testjfx tests in shared nashorn context or not?
 216 testjfx-test-sys-prop.test.js.shared.context=false
 217 
 218 # framework root for our script tests
 219 testjfx-test-sys-prop.test.js.framework=\
 220     -fx \
 221     ${test.script.dir}${file.separator}jfx.js
 222 
 223 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
 224 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar


 247 run.test.xmx=3G
 248 run.test.xms=2G
 249 
 250 run.test.user.language=tr
 251 run.test.user.country=TR
 252 
 253 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
 254 
 255 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
 256 # -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
 257 
 258 # turn on assertions for tests
 259 run.test.jvmargs.main=${run.test.jvmargs.common} -ea
 260 
 261 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
 262 run.test.jvmargs.octane.main=${run.test.jvmargs.common}
 263 
 264 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
 265 
 266 # VM options for script tests with @fork option
 267 test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}
 268 
 269 # path of rhino.jar for benchmarks
 270 rhino.jar=
 271 
 272 v8.shell=d8
 273 
 274 #path to rhino jar file
 275 octaneperf-sys-prop.rhino.jar=${rhino.jar}
 276 
 277 #timeout for performance tests in minutes
 278 octaneperf-sys-prop.timeout.value=10
 279 
 280 ################
 281 # codecoverage #
 282 ################
 283         #enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
 284 make.code.coverage=false
 285         #type of codecoverage; one of static or dynamic. Now only dynamic is supported
 286 jcov=dynamic
 287         #naming of CC results


  95  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
  96 
  97 javac.debug=true
  98 javac.encoding=ascii
  99 javac.classpath=\
 100     ${build.classes.dir}
 101 javac.test.classpath=\
 102     ${build.classes.dir}:\
 103     ${build.test.classes.dir}:\
 104     ${file.reference.testng.jar}
 105 
 106 meta.inf.dir=${src.dir}/META-INF
 107 
 108 run.classpath=\
 109     ${build.classes.dir}
 110 
 111 # test scripts to run
 112 test.dir=test
 113 test.script.dir=test/script
 114 test.basic.dir=test/script/basic
 115 test.maptests.dir=test/script/maptests
 116 test.error.dir=test/script/error
 117 test.sandbox.dir=test/script/sandbox
 118 test.trusted.dir=test/script/trusted
 119 test.external.dir=test/script/external
 120 test262.dir=${test.external.dir}/test262
 121 test262.suite.dir=${test262.dir}/test/suite
 122 testjfx.dir=${test.script.dir}/jfx
 123 
 124 test-sys-prop.test.dir=${test.dir}
 125 test-sys-prop.test.js.roots=${test.basic.dir} ${test.maptests.dir} ${test.error.dir} ${test.sandbox.dir} ${test.trusted.dir}
 126 test-sys-prop.test262.suite.dir=${test262.suite.dir}
 127 test-sys-prop.es5conform.testcases.dir=${test.external.dir}/ES5Conform/TestCases
 128 test-sys-prop.test.basic.dir=${test.basic.dir}
 129 
 130 # framework root for our script tests
 131 test-sys-prop.test.js.framework=${test.script.dir}/assert.js
 132 
 133 # Control the verbosity of ParserTest
 134 test-sys-prop.parsertest.verbose=false
 135 
 136 # turn on/off scripting mode for parser tests
 137 test-sys-prop.parsertest.scripting=true
 138 
 139 # turn on/off test262 scripts for parser tests
 140 test-sys-prop.parsertest.test262=false
 141 
 142 # Control the verbosity of the CompilerTest
 143 test-sys-prop.compilertest.verbose=false
 144 
 145 # turn on/off scripting mode for compiler tests


 185 # execute test262 tests in shared nashorn context or not?
 186 test262-test-sys-prop.test.js.shared.context=true
 187 
 188 # test262 test root
 189 test262-test-sys-prop.test.js.roots=${test262.suite.dir}
 190 # test262 enable/disable strict mode tests
 191 test262-test-sys-prop.test.js.enable.strict.mode=true
 192 
 193 # file containing test262 tests to be excluded
 194 # test262-test-sys-prop.test.js.excludes.file=${test262.dir}/test/config/excludelist.xml
 195 
 196 # list of test262 test dirs to be excluded
 197 test262-test-sys-prop.test.js.exclude.dir=\
 198     ${test262.suite.dir}/intl402/ \
 199     ${test262.suite.dir}/bestPractice/ 
 200 
 201 test262-test-sys-prop.test.failed.list.file=${build.dir}/test/failedTests
 202 
 203 # test262 test frameworks
 204 test262-test-sys-prop.test.js.framework=\
 205     --class-cache-size=10 \
 206     --no-java \
 207     --no-typed-arrays \
 208     -timezone=PST \
 209     ${test.script.dir}/test262.js \
 210     ${test262.dir}/test/harness/framework.js \
 211     ${test262.dir}/test/harness/sta.js
 212 
 213 # testjfx test root
 214 testjfx-test-sys-prop.test.js.roots=${testjfx.dir}   
 215 
 216 # execute testjfx tests in shared nashorn context or not?
 217 testjfx-test-sys-prop.test.js.shared.context=false
 218 
 219 # framework root for our script tests
 220 testjfx-test-sys-prop.test.js.framework=\
 221     -fx \
 222     ${test.script.dir}${file.separator}jfx.js
 223 
 224 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
 225 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar


 248 run.test.xmx=3G
 249 run.test.xms=2G
 250 
 251 run.test.user.language=tr
 252 run.test.user.country=TR
 253 
 254 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
 255 
 256 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M
 257 # -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintNMethods
 258 
 259 # turn on assertions for tests
 260 run.test.jvmargs.main=${run.test.jvmargs.common} -ea
 261 
 262 #-XX:-UseCompressedKlassPointers -XX:+PrintHeapAtGC -XX:ClassMetaspaceSize=300M  
 263 run.test.jvmargs.octane.main=${run.test.jvmargs.common}
 264 
 265 run.test.jvmsecurityargs=-Xverify:all -Djava.security.manager -Djava.security.policy=${basedir}/build/nashorn.policy
 266 
 267 # VM options for script tests with @fork option
 268 test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs} -cp ${run.test.classpath}
 269 
 270 # path of rhino.jar for benchmarks
 271 rhino.jar=
 272 
 273 v8.shell=d8
 274 
 275 #path to rhino jar file
 276 octaneperf-sys-prop.rhino.jar=${rhino.jar}
 277 
 278 #timeout for performance tests in minutes
 279 octaneperf-sys-prop.timeout.value=10
 280 
 281 ################
 282 # codecoverage #
 283 ################
 284         #enable/disable code coverage; please redifine in the ${user.home}/.nashorn.project.local.properties
 285 make.code.coverage=false
 286         #type of codecoverage; one of static or dynamic. Now only dynamic is supported
 287 jcov=dynamic
 288         #naming of CC results