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