build.xml revision 878:8d35928f8db5
1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4 Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
5 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6
7 This code is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License version 2 only, as
9 published by the Free Software Foundation.
10
11 This code is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 version 2 for more details (a copy is included in the LICENSE file that
15 accompanied this code).
16
17 You should have received a copy of the GNU General Public License version
18 2 along with this work; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 or visit www.oracle.com if you need additional information or have any
23 questions.
24-->
25
26<project name="nashorn" default="test" basedir="..">
27  <import file="build-nasgen.xml"/>
28  <import file="code_coverage.xml"/>
29
30  <target name="init-conditions">
31    <!-- loading locally defined resources and properties. NB they owerwrite default ones defined later -->
32    <property file="${user.home}/.nashorn.project.local.properties"/>
33
34    <loadproperties srcFile="make/project.properties"/>
35    <path id="nashorn.ext.path">
36      <pathelement location="${dist.dir}"/>
37    </path>
38    <property name="ext.class.path" value="-Djava.ext.dirs=&quot;${toString:nashorn.ext.path}&quot;"/>
39    <condition property="svn.executable" value="/usr/local/bin/svn" else="svn">
40      <available file="/usr/local/bin/svn"/>
41    </condition>
42    <condition property="hg.executable" value="/usr/local/bin/hg" else="hg">
43      <available file="/usr/local/bin/hg"/>
44    </condition>
45    <condition property="git.executable" value="/usr/local/bin/git" else="git">
46      <available file="/usr/local/bin/git"/>
47    </condition>
48    <!-- check if JDK already has ASM classes -->
49    <available property="asm.available" classname="jdk.internal.org.objectweb.asm.Type"/>
50    <!-- check if testng.jar is avaiable -->
51    <available property="testng.available" file="${file.reference.testng.jar}"/>
52    <!-- check if Jemmy ang testng.jar are avaiable -->
53    <condition property="jemmy.jfx.testng.available" value="true">
54      <and>
55        <available file="${file.reference.jemmyfx.jar}"/>
56        <available file="${file.reference.jemmycore.jar}"/>
57        <available file="${file.reference.jemmyawtinput.jar}"/>
58        <available file="${file.reference.jfxrt.jar}"/>
59        <isset property="testng.available"/>
60      </and>
61    </condition>
62
63    <!-- enable/disable make code coverage -->
64    <condition property="cc.enabled">
65        <istrue value="${make.code.coverage}" />
66    </condition>
67
68    <!-- exclude tests in exclude lists -->
69    <condition property="exclude.list" value="./exclude/exclude_list_cc.txt" else="./exclude/exclude_list.txt">
70      <istrue value="${make.code.coverage}" />
71    </condition>
72
73    <condition property="jfr.options" value="${run.test.jvmargs.jfr}" else="">
74      <istrue value="${jfr}"/>
75    </condition>
76  </target>
77
78  <target name="init" depends="init-conditions, init-cc">
79    <!-- extends jvm args -->
80    <property name="run.test.jvmargs" value="${run.test.jvmargs.main} ${run.test.cc.jvmargs} ${jfr.options}"/>
81    <property name="run.test.jvmargs.octane" value="${run.test.jvmargs.octane.main} ${run.test.cc.jvmargs} ${jfr.options}"/>
82
83    <echo message="run.test.jvmargs=${run.test.jvmargs}"/>
84    <echo message="run.test.jvmargs.octane=${run.test.jvmargs.octane}"/>
85    <echo message="run.test.xms=${run.test.xms}"/>
86    <echo message="run.test.xmx=${run.test.xmx}"/>
87
88  </target>
89
90  <target name="prepare" depends="init">
91    <mkdir dir="${build.dir}"/>
92    <mkdir dir="${build.classes.dir}"/>
93    <mkdir dir="${build.classes.dir}/META-INF/services"/>
94    <mkdir dir="${build.test.classes.dir}"/>
95    <mkdir dir="${dist.dir}"/>
96    <mkdir dir="${dist.javadoc.dir}"/>
97  </target>
98
99  <target name="clean" depends="init, clean-nasgen, init-cc-cleanup">
100    <delete includeemptydirs="true">
101      <fileset dir="${build.dir}" erroronmissingdir="false"/>
102    </delete>
103    <delete dir="${dist.dir}"/>
104  </target>
105
106  <!-- do it only if ASM is not available -->
107  <target name="compile-asm" depends="prepare" unless="asm.available">
108    <javac srcdir="${jdk.asm.src.dir}"
109           destdir="${build.classes.dir}"
110           excludes="**/optimizer/* **/xml/* **/attrs/*"
111           source="${javac.source}"
112           target="${javac.target}"
113           debug="${javac.debug}"
114           encoding="${javac.encoding}"
115           includeantruntime="false"/>
116  </target>
117
118  <target name="compile" depends="compile-asm" description="Compiles nashorn">
119    <javac srcdir="${src.dir}"
120           destdir="${build.classes.dir}"
121           classpath="${javac.classpath}"
122           source="${javac.source}"
123           target="${javac.target}"
124           debug="${javac.debug}"
125           encoding="${javac.encoding}"
126           includeantruntime="false" fork="true">
127      <compilerarg value="-J-Djava.ext.dirs="/>
128      <compilerarg value="-Xlint:unchecked"/>
129      <compilerarg value="-Xlint:deprecation"/>
130      <compilerarg value="-XDignore.symbol.file"/>
131      <compilerarg value="-Xdiags:verbose"/>
132    </javac>
133    <copy todir="${build.classes.dir}/META-INF/services">
134       <fileset dir="${meta.inf.dir}/services/"/>
135    </copy>
136     <copy todir="${build.classes.dir}/jdk/nashorn/api/scripting/resources">
137       <fileset dir="${src.dir}/jdk/nashorn/api/scripting/resources/"/>
138    </copy>
139    <copy todir="${build.classes.dir}/jdk/nashorn/internal/runtime/resources">
140       <fileset dir="${src.dir}/jdk/nashorn/internal/runtime/resources/"/>
141    </copy>
142    <copy todir="${build.classes.dir}/jdk/nashorn/tools/resources">
143       <fileset dir="${src.dir}/jdk/nashorn/tools/resources/"/>
144    </copy>
145    <copy file="${src.dir}/jdk/internal/dynalink/support/messages.properties" todir="${build.classes.dir}/jdk/internal/dynalink/support"/>
146
147    <echo message="full=${nashorn.fullversion}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/>
148    <echo file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo>
149    <echo message="release=${nashorn.version}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/>
150  </target>
151
152  <target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar">
153    <jar jarfile="${dist.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
154      <fileset dir="${build.classes.dir}"/>
155      <manifest>
156        <attribute name="Archiver-Version" value="n/a"/>
157        <attribute name="Build-Jdk" value="${java.runtime.version}"/>
158        <attribute name="Built-By" value="n/a"/>
159        <attribute name="Created-By" value="Ant jar task"/>
160        <section name="jdk/nashorn/">
161          <attribute name="Implementation-Title" value="${nashorn.product.name}"/>
162          <attribute name="Implementation-Version" value="${nashorn.version}"/>
163        </section>
164      </manifest>
165    </jar>
166  </target>
167
168  <target name="use-promoted-nashorn" depends="init">
169    <delete file="${dist.dir}/nashorn.jar"/>
170    <copy file="${java.home}/lib/ext/nashorn.jar" todir="${dist.dir}"/>
171    <property name="compile.suppress.jar" value="defined"/>
172  </target>
173
174  <target name="build-fxshell" depends="jar">
175    <description>Builds the javafx shell.</description>
176    <mkdir dir="${fxshell.classes.dir}"/>
177    <javac srcdir="${fxshell.dir}"
178           destdir="${fxshell.classes.dir}"
179           classpath="${dist.jar}:${javac.classpath}"
180           debug="${javac.debug}"
181           encoding="${javac.encoding}"
182           includeantruntime="false">
183    </javac>
184    <jar jarfile="${fxshell.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
185      <fileset dir="${fxshell.classes.dir}"/>
186      <manifest>
187        <attribute name="Archiver-Version" value="n/a"/>
188        <attribute name="Build-Jdk" value="${java.runtime.version}"/>
189        <attribute name="Built-By" value="n/a"/>
190        <attribute name="Created-By" value="Ant jar task"/>
191        <section name="jdk/nashorn/">
192          <attribute name="Implementation-Title" value="Oracle Nashorn FXShell"/>
193          <attribute name="Implementation-Version" value="${nashorn.version}"/>
194        </section>
195      </manifest>
196    </jar>
197  </target>
198
199  <target name="javadoc" depends="jar">
200    <javadoc destdir="${dist.javadoc.dir}" use="yes" overview="src/overview.html" 
201        extdirs="${nashorn.ext.path}" windowtitle="${nashorn.product.name} ${nashorn.version}"
202        additionalparam="-quiet" failonerror="true">
203      <classpath>
204        <pathelement location="${build.classes.dir}"/>
205      </classpath>
206      <fileset dir="${src.dir}" includes="**/*.java"/>
207      <fileset dir="${jdk.asm.src.dir}" includes="**/*.java"/>
208      <link href="http://docs.oracle.com/javase/8/docs/api/"/>
209      <!-- The following tags are used only in ASM sources - just ignore these -->
210      <tag name="label" description="label tag in ASM sources" enabled="false"/>
211      <tag name="linked" description="linked tag in ASM sources" enabled="false"/>
212      <tag name="associates" description="associates tag in ASM sources" enabled="false"/>
213    </javadoc>
214  </target>
215
216  <!-- generate javadoc only for nashorn extension api classes -->
217  <target name="javadocapi" depends="jar">
218    <javadoc destdir="${dist.javadoc.dir}" use="yes" extdirs="${nashorn.ext.path}" 
219        windowtitle="${nashorn.product.name}" additionalparam="-quiet" failonerror="true">
220      <classpath>
221        <pathelement location="${build.classes.dir}"/>
222      </classpath>
223      <fileset dir="${src.dir}" includes="jdk/nashorn/api/**/*.java"/>
224      <link href="http://docs.oracle.com/javase/8/docs/api/"/>
225    </javadoc>
226  </target>
227
228
229  <!-- generate shell.html for shell tool documentation -->
230  <target name="shelldoc" depends="jar">
231    <java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true">
232      <jvmarg line="${ext.class.path}"/>
233      <arg value="-scripting"/>
234      <arg value="docs/genshelldoc.js"/>
235    </java>
236  </target>
237
238  <!-- generate all docs -->
239  <target name="docs" depends="javadoc, shelldoc"/>
240
241  <!-- create .zip and .tar.gz for nashorn binaries and scripts. -->
242  <target name="dist" depends="jar">
243      <zip destfile="${build.zip}" basedir=".."
244          excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
245      <tar destfile="${build.gzip}" basedir=".." compression="gzip"
246          excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
247  </target>
248
249  <target name="compile-test" depends="compile, run-nasgen" if="testng.available">
250    <!-- testng task -->
251    <taskdef name="testng" classname="org.testng.TestNGAntTask"
252        classpath="${file.reference.testng.jar}"/>
253
254    <javac srcdir="${test.src.dir}"
255           destdir="${build.test.classes.dir}"
256           classpath="${javac.test.classpath}"
257           source="${javac.source}"
258           target="${javac.target}"
259           debug="${javac.debug}"
260           encoding="${javac.encoding}"
261           includeantruntime="false" fork="true">
262        <compilerarg value="-J-Djava.ext.dirs="/>
263        <compilerarg value="-Xlint:unchecked"/>
264        <compilerarg value="-Xlint:deprecation"/>
265        <compilerarg value="-Xdiags:verbose"/>
266    </javac>
267
268    <copy todir="${build.test.classes.dir}/META-INF/services">
269       <fileset dir="${test.src.dir}/META-INF/services/"/>
270    </copy>
271
272    <copy todir="${build.test.classes.dir}/jdk/nashorn/internal/runtime/resources">
273       <fileset dir="${test.src.dir}/jdk/nashorn/internal/runtime/resources"/>
274    </copy>
275
276    <copy todir="${build.test.classes.dir}/jdk/nashorn/api/scripting/resources">
277       <fileset dir="${test.src.dir}/jdk/nashorn/api/scripting/resources"/>
278    </copy>
279
280    <!-- tests that check nashorn internals and internal API -->
281    <jar jarfile="${nashorn.internal.tests.jar}">
282      <fileset dir="${build.test.classes.dir}" excludes="**/api/**"/>
283    </jar>
284
285    <!-- tests that check nashorn script engine (jsr-223) API -->
286    <jar jarfile="${nashorn.api.tests.jar}">
287      <fileset dir="${build.test.classes.dir}" includes="**/api/**"/>
288      <fileset dir="${build.test.classes.dir}" includes="**/META-INF/**"/>
289      <fileset dir="${build.test.classes.dir}" includes="**/resources/*.js"/>
290    </jar>
291
292  </target>
293
294  <target name="generate-policy-file" depends="prepare">
295    <echo file="${build.dir}/nashorn.policy">
296
297grant codeBase "file:/${toString:nashorn.ext.path}/nashorn.jar" {
298    permission java.security.AllPermission;
299};
300
301grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" {
302    permission java.security.AllPermission;
303};
304
305grant codeBase "file:/${basedir}/${file.reference.testng.jar}" {
306    permission java.security.AllPermission;
307};
308
309grant codeBase "file:/${basedir}/test/script/trusted/*" {
310    permission java.security.AllPermission;
311};
312
313grant codeBase "file:/${basedir}/test/script/maptests/*" {
314    permission java.io.FilePermission "${basedir}/test/script/maptests/*","read";
315    permission java.lang.RuntimePermission "nashorn.debugMode";
316};
317
318grant codeBase "file:/${basedir}/test/script/basic/*" {
319    permission java.io.FilePermission "${basedir}/test/script/-", "read";
320    permission java.io.FilePermission "$${user.dir}", "read";
321    permission java.util.PropertyPermission "user.dir", "read";
322    permission java.util.PropertyPermission "nashorn.test.*", "read";
323};
324
325grant codeBase "file:/${basedir}/test/script/basic/parser/*" {
326    permission java.io.FilePermission "${basedir}/test/script/-", "read";
327    permission java.io.FilePermission "$${user.dir}", "read";
328    permission java.util.PropertyPermission "user.dir", "read";
329    permission java.util.PropertyPermission "nashorn.test.*", "read";
330};
331
332grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" {
333    permission java.util.PropertyPermission "java.security.policy", "read";
334};
335
336grant codeBase "file:/${basedir}/test/script/basic/classloader.js" {
337    permission java.lang.RuntimePermission "nashorn.JavaReflection";
338};
339
340grant codeBase "file:/${basedir}/test/script/markdown.js" {
341    permission java.io.FilePermission "${basedir}/test/script/external/showdown/-", "read";
342};
343
344    </echo>
345
346    <replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace>    <!--hack for Windows - to make URLs with normal path separators -->
347    <replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace>   <!--hack for Unix - to avoid leading // in URLs -->
348
349  </target>
350
351  <target name="check-external-tests">
352      <available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/>
353      <available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/>
354      <available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/>
355      <available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/>
356      <available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/>
357      <available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/>
358      <available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/>
359      <available file="${test.external.dir}/showdown" property="test-sys-prop.external.markdown"/>
360  </target>
361
362  <target name="check-testng" unless="testng.available">
363    <echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under test/lib directory."/>
364  </target>
365
366  <target name="test" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
367    <delete dir="${build.dir}/nashorn_code_cache"/>
368    <fileset id="test.classes" dir="${build.test.classes.dir}">
369      <include name="**/api/javaaccess/*Test.class"/>
370      <include name="**/api/scripting/*Test.class"/>
371      <include name="**/codegen/*Test.class"/>
372      <include name="**/parser/*Test.class"/>
373      <include name="**/runtime/*Test.class"/>
374      <include name="**/runtime/regexp/*Test.class"/>
375      <include name="**/runtime/regexp/joni/*Test.class"/>
376      <include name="**/framework/*Test.class"/>
377    </fileset>
378
379    <fileset id="test.nosecurity.classes" dir="${build.test.classes.dir}">
380      <include name="**/framework/ScriptTest.class"/>
381    </fileset>
382
383    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
384       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
385      <jvmarg line="${ext.class.path}"/>
386      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
387      <propertyset>
388        <propertyref prefix="nashorn."/>
389      </propertyset>
390      <propertyset>
391        <propertyref prefix="test-sys-prop."/>
392        <mapper from="test-sys-prop.*" to="*" type="glob"/>
393      </propertyset>
394      <sysproperty key="test.js.excludes.file" value="${exclude.list}"/>
395      <classpath>
396          <pathelement path="${run.test.classpath}"/>
397      </classpath>
398    </testng>
399
400    <testng outputdir="${build.nosecurity.test.results.dir}" classfilesetref="test.nosecurity.classes"
401       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
402      <jvmarg line="${ext.class.path}"/>
403      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
404      <propertyset>
405        <propertyref prefix="nashorn."/>
406      </propertyset>
407      <propertyset>
408        <propertyref prefix="test-sys-prop-no-security."/>
409        <mapper from="test-sys-prop-no-security.*" to="*" type="glob"/>
410      </propertyset>
411      <classpath>
412          <pathelement path="${run.test.classpath}"/>
413      </classpath>
414    </testng>
415  </target>
416
417  <target name="check-jemmy.jfx.testng" unless="jemmy.jfx.testng.available">
418    <echo message="WARNING: Jemmy or JavaFX or TestNG not available, will not run tests. Please copy testng.jar, JemmyCore.jar, JemmyFX.jar, JemmyAWTInput.jar under test${file.separator}lib directory. And make sure you have jfxrt.jar in ${java.home}${file.separator}lib${file.separator}ext dir."/>
419  </target>
420
421  <target name="testjfx" depends="jar, check-jemmy.jfx.testng, compile-test" if="jemmy.jfx.testng.available">
422    <fileset id="test.classes" dir="${build.test.classes.dir}">
423       <include name="**/framework/*Test.class"/>
424    </fileset>
425
426    <copy file="${file.reference.jfxrt.jar}" todir="dist"/>
427
428    <condition property="jfx.prism.order" value="-Dprism.order=j2d" else=" ">
429        <not>
430            <os family="mac"/>
431        </not>
432    </condition>
433
434    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
435       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
436      <jvmarg line="${ext.class.path}"/>
437      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
438      <propertyset>
439        <propertyref prefix="testjfx-test-sys-prop."/>
440        <mapper from="testjfx-test-sys-prop.*" to="*" type="glob"/>
441      </propertyset>
442      <sysproperty key="test.fork.jvm.options" value="${testjfx-test-sys-prop.test.fork.jvm.options} ${jfx.prism.order}"/>
443      <classpath>
444          <pathelement path="${testjfx.run.test.classpath}"/>
445      </classpath>
446    </testng>
447  </target>
448
449  <target name="testmarkdown" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
450    <fileset id="test.classes" dir="${build.test.classes.dir}">
451       <include name="**/framework/*Test.class"/>
452    </fileset>
453
454    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
455       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
456      <jvmarg line="${ext.class.path}"/>
457      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
458      <propertyset>
459        <propertyref prefix="testmarkdown-test-sys-prop."/>
460        <mapper from="testmarkdown-test-sys-prop.*" to="*" type="glob"/>
461      </propertyset>
462      <classpath>
463          <pathelement path="${run.test.classpath}"/>
464      </classpath>
465    </testng>
466  </target>
467
468  <target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
469    <fileset id="test.classes" dir="${build.test.classes.dir}">
470       <include name="**/framework/*Test.class"/>
471    </fileset>
472
473    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
474       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
475      <jvmarg line="${ext.class.path}"/>
476      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
477      <propertyset>
478        <propertyref prefix="nashorn."/>
479      </propertyset>
480      <propertyset>
481        <propertyref prefix="test262-test-sys-prop."/>
482        <mapper from="test262-test-sys-prop.*" to="*" type="glob"/>
483      </propertyset>
484      <classpath>
485          <pathelement path="${run.test.classpath}"/>
486      </classpath>
487    </testng>
488  </target>
489
490  <target name="test262parallel" depends="test262-parallel"/>
491
492  <target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
493    <!-- use just build.test.classes.dir to avoid referring to TestNG -->
494    <java classname="${parallel.test.runner}" dir="${basedir}" fork="true">
495      <jvmarg line="${ext.class.path}"/>
496      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
497      <classpath>
498          <pathelement path="${run.test.classpath}"/>
499      </classpath>
500      <syspropertyset>
501          <propertyref prefix="test262-test-sys-prop."/>
502          <mapper type="glob" from="test262-test-sys-prop.*" to="*"/>
503      </syspropertyset>
504    </java>
505  </target>
506
507  <target name="testparallel" depends="test-parallel"/>
508
509  <target name="test-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
510      <!-- use just build.test.classes.dir to avoid referring to TestNG -->
511      <java classname="${parallel.test.runner}" dir="${basedir}"
512        failonerror="true"
513        fork="true">
514      <jvmarg line="${ext.class.path}"/>
515      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
516      <classpath>
517          <pathelement path="${run.test.classpath}"/>
518      <pathelement path="${build.test.classes.dir}"/>
519      </classpath>
520      <syspropertyset>
521          <propertyref prefix="test-sys-prop."/>
522          <mapper type="glob" from="test-sys-prop.*" to="*"/>
523      </syspropertyset>
524      </java>
525  </target>
526
527  <target name="all" depends="test, docs"
528      description="Build, test and generate docs for nashorn"/>
529
530  <target name="run" depends="jar"
531      description="Run the shell with a sample script">
532    <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
533        <jvmarg line="${ext.class.path}"/>
534        <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
535        <arg value="-dump-on-error"/>
536        <arg value="test.js"/>
537    </java>
538  </target>
539
540  <target name="debug" depends="jar"
541      description="Debug the shell with a sample script">
542    <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
543        <jvmarg line="${ext.class.path}"/>
544        <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
545        <arg value="--print-code"/>
546        <arg value="--verify-code"/>
547        <arg value="--print-symbols"/>
548        <jvmarg value="-Dnashorn.codegen.debug=true"/>
549        <arg value="test.js"/>
550    </java>
551  </target>
552
553  <!-- targets to get external script tests -->
554
555  <!-- test262 test suite -->
556  <target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}">
557    <!-- clone test262 git repo -->
558    <exec executable="${git.executable}">
559       <arg value="clone"/>
560       <arg value="https://github.com/tc39/test262"/>
561       <arg value="${test.external.dir}/test262"/>
562    </exec>
563  </target>
564  <target name="update-test262" depends="init" if="${test-sys-prop.external.test262}">
565    <!-- update test262 git repo -->
566    <exec executable="${git.executable}" dir="${test.external.dir}/test262">
567       <arg value="pull"/>
568    </exec>
569  </target>
570
571  <!-- octane benchmark -->
572  <target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}">
573    <!-- checkout octane benchmarks -->
574    <exec executable="${svn.executable}">
575       <arg value="--non-interactive"/>
576       <arg value="--trust-server-cert"/>
577       <arg value="checkout"/>
578       <arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/>
579       <arg value="${test.external.dir}/octane"/>
580    </exec>
581  </target>
582  <target name="update-octane" depends="init" if="${test-sys-prop.external.octane}">
583    <!-- update octane benchmarks -->
584    <exec executable="${svn.executable}" dir="${test.external.dir}/octane">
585       <arg value="--non-interactive"/>
586       <arg value="--trust-server-cert"/>
587       <arg value="update"/>
588    </exec>
589  </target>
590
591  <!-- sunspider benchmark -->
592  <target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}">
593    <!-- checkout sunspider -->
594    <exec executable="${svn.executable}">
595       <arg value="--non-interactive"/>
596       <arg value="--trust-server-cert"/>
597       <arg value="checkout"/>
598       <arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/>
599       <arg value="${test.external.dir}/sunspider"/>
600    </exec>
601  </target>
602  <target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}">
603    <!-- update sunspider -->
604    <exec executable="${svn.executable}" dir="${test.external.dir}/sunspider">
605       <arg value="--non-interactive"/>
606       <arg value="--trust-server-cert"/>
607       <arg value="update"/>
608    </exec>
609  </target>
610
611  <!-- get all external test scripts -->
612  <target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider">
613    <!-- make external test dir -->
614    <mkdir dir="${test.external.dir}"/>
615
616    <!-- jquery -->
617    <mkdir dir="${test.external.dir}/jquery"/>
618    <get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
619    <get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
620
621    <!-- prototype -->
622    <mkdir dir="${test.external.dir}/prototype"/>
623    <get src="http://ajax.googleapis.com/ajax/libs/prototype/1.7.0/prototype.js" dest="${test.external.dir}/prototype" usetimestamp="true" skipexisting="true" ignoreerrors="true"/>
624
625    <!-- underscorejs -->
626    <mkdir dir="${test.external.dir}/underscore"/>
627    <get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
628    <get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
629
630    <!-- yui -->
631    <mkdir dir="${test.external.dir}/yui"/>
632    <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
633    <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
634
635    <!-- showdown -->
636    <mkdir dir="${test.external.dir}/showdown"/>
637    <get src="https://raw.github.com/coreyti/showdown/master/src/showdown.js" dest="${test.external.dir}/showdown" skipexisting="true" ignoreerrors="true"/>
638    <get src="https://raw.github.com/coreyti/showdown/master/src/extensions/table.js" dest="${test.external.dir}/showdown" skipexisting="true" ignoreerrors="true"/>
639
640  </target>
641
642  <!-- update external test suites that are pulled from source control systems -->
643  <target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/>
644
645  <!-- run all perf tests -->
646  <target name="perf" depends="externals, update-externals, sunspider, octane"/>
647
648  <!-- run all tests -->
649  <target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}">
650     <fail message="Exiting.."/>
651  </target>
652
653  <target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/>
654
655  <import file="build-benchmark.xml"/>
656
657</project>
658