< prev index next >

make/project.properties

Print this page
rev 1271 : 8080286: use path separator setting consistently in Nashorn project properties
Summary: replace uses of ":" with platform-independent path separator property
Reviewed-by: hannesw, sundar


  88 testng.verbose=2
  89 
  90 # TestNG listeners - we want to replace TestNG's own JUnit
  91 # reporter, but want everything else provided by default
  92 # Unfortunately, we've to clone the other default reporters here.
  93 
  94 testng.listeners=\
  95  org.testng.reporters.SuiteHTMLReporter, \
  96  org.testng.reporters.TestHTMLReporter, \
  97  org.testng.reporters.jq.Main, \
  98  org.testng.reporters.FailedReporter, \
  99  org.testng.reporters.XMLReporter \
 100  org.testng.reporters.EmailableReporter, \
 101  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
 102 
 103 javac.debug=true
 104 javac.encoding=ascii
 105 javac.classpath=\
 106     ${build.classes.dir}
 107 javac.test.classpath=\
 108     ${build.classes.dir}:\
 109     ${build.test.classes.dir}:\
 110     ${file.reference.testng.jar}
 111 
 112 meta.inf.dir=${src.dir}/META-INF
 113 
 114 run.classpath=\
 115     ${build.classes.dir}
 116 
 117 # test scripts to run
 118 test.dir=test
 119 test.nosecurity.dir=test/script/nosecurity
 120 test.script.dir=test/script
 121 test.basic.dir=test/script/basic
 122 test.maptests.dir=test/script/maptests
 123 test.error.dir=test/script/error
 124 test.sandbox.dir=test/script/sandbox
 125 test.trusted.dir=test/script/trusted
 126 test.external.dir=test/script/external
 127 test262.dir=${test.external.dir}/test262
 128 test262.suite.dir=${test262.dir}/test/suite
 129 testjfx.dir=${test.script.dir}/jfx


 242 testjfx-test-sys-prop.test.js.framework=\
 243     -fx \
 244     ${test.script.dir}${file.separator}jfx.js
 245 
 246 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
 247 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar
 248 file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar
 249 file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
 250 testjfx.run.test.classpath=\
 251     ${file.reference.jemmyfx.jar}${path.separator}\
 252     ${file.reference.jemmycore.jar}${path.separator}\
 253     ${file.reference.jemmyawtinput.jar}${path.separator}\
 254     ${file.reference.testng.jar}${path.separator}\
 255     ${nashorn.internal.tests.jar}${path.separator}\
 256     ${nashorn.api.tests.jar}
 257 
 258 # testjfx VM options for script tests with @fork option
 259 testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
 260 
 261 run.test.classpath=\
 262     ${file.reference.testng.jar}:\
 263     ${nashorn.internal.tests.jar}:\
 264     ${nashorn.api.tests.jar}
 265 
 266 src.dir=src/jdk.scripting.nashorn/share/classes
 267 test.src.dir=test/src
 268 
 269 # -Xmx is used for all tests, -Xms only for octane benchmark
 270 run.test.xmx=2G
 271 run.test.xms=2G
 272 
 273 # uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames,
 274 # or everything will as of the now drown in lambda forms and be cut off.
 275 #
 276 #jfr.args=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath="test_suite.jfr",stackdepth=1024 \
 277 
 278 jfr.args=
 279 
 280 run.test.user.language=tr
 281 run.test.user.country=TR
 282 
 283 run.test.jvmargs.common=\




  88 testng.verbose=2
  89 
  90 # TestNG listeners - we want to replace TestNG's own JUnit
  91 # reporter, but want everything else provided by default
  92 # Unfortunately, we've to clone the other default reporters here.
  93 
  94 testng.listeners=\
  95  org.testng.reporters.SuiteHTMLReporter, \
  96  org.testng.reporters.TestHTMLReporter, \
  97  org.testng.reporters.jq.Main, \
  98  org.testng.reporters.FailedReporter, \
  99  org.testng.reporters.XMLReporter \
 100  org.testng.reporters.EmailableReporter, \
 101  jdk.nashorn.internal.test.framework.JSJUnitReportReporter
 102 
 103 javac.debug=true
 104 javac.encoding=ascii
 105 javac.classpath=\
 106     ${build.classes.dir}
 107 javac.test.classpath=\
 108     ${build.classes.dir}${path.separator}\
 109     ${build.test.classes.dir}${path.separator}\
 110     ${file.reference.testng.jar}
 111 
 112 meta.inf.dir=${src.dir}/META-INF
 113 
 114 run.classpath=\
 115     ${build.classes.dir}
 116 
 117 # test scripts to run
 118 test.dir=test
 119 test.nosecurity.dir=test/script/nosecurity
 120 test.script.dir=test/script
 121 test.basic.dir=test/script/basic
 122 test.maptests.dir=test/script/maptests
 123 test.error.dir=test/script/error
 124 test.sandbox.dir=test/script/sandbox
 125 test.trusted.dir=test/script/trusted
 126 test.external.dir=test/script/external
 127 test262.dir=${test.external.dir}/test262
 128 test262.suite.dir=${test262.dir}/test/suite
 129 testjfx.dir=${test.script.dir}/jfx


 242 testjfx-test-sys-prop.test.js.framework=\
 243     -fx \
 244     ${test.script.dir}${file.separator}jfx.js
 245 
 246 file.reference.jemmyfx.jar=test${file.separator}lib${file.separator}JemmyFX.jar
 247 file.reference.jemmycore.jar=test${file.separator}lib${file.separator}JemmyCore.jar
 248 file.reference.jemmyawtinput.jar=test${file.separator}lib${file.separator}JemmyAWTInput.jar
 249 file.reference.jfxrt.jar=${java.home}${file.separator}lib${file.separator}ext${file.separator}jfxrt.jar
 250 testjfx.run.test.classpath=\
 251     ${file.reference.jemmyfx.jar}${path.separator}\
 252     ${file.reference.jemmycore.jar}${path.separator}\
 253     ${file.reference.jemmyawtinput.jar}${path.separator}\
 254     ${file.reference.testng.jar}${path.separator}\
 255     ${nashorn.internal.tests.jar}${path.separator}\
 256     ${nashorn.api.tests.jar}
 257 
 258 # testjfx VM options for script tests with @fork option
 259 testjfx-test-sys-prop.test.fork.jvm.options=${run.test.jvmargs.main} -Xmx${run.test.xmx} -cp ${testjfx.run.test.classpath}
 260 
 261 run.test.classpath=\
 262     ${file.reference.testng.jar}${path.separator}\
 263     ${nashorn.internal.tests.jar}${path.separator}\
 264     ${nashorn.api.tests.jar}
 265 
 266 src.dir=src/jdk.scripting.nashorn/share/classes
 267 test.src.dir=test/src
 268 
 269 # -Xmx is used for all tests, -Xms only for octane benchmark
 270 run.test.xmx=2G
 271 run.test.xms=2G
 272 
 273 # uncomment this jfr.args to enable light recordings. the stack needs to be cranked up to 1024 frames,
 274 # or everything will as of the now drown in lambda forms and be cut off.
 275 #
 276 #jfr.args=-XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:FlightRecorderOptions=defaultrecording=true,disk=true,dumponexit=true,dumponexitpath="test_suite.jfr",stackdepth=1024 \
 277 
 278 jfr.args=
 279 
 280 run.test.user.language=tr
 281 run.test.user.country=TR
 282 
 283 run.test.jvmargs.common=\


< prev index next >