make/build.xml

Mon, 30 Sep 2013 21:33:38 +0530

author
sundar
date
Mon, 30 Sep 2013 21:33:38 +0530
changeset 587
7272ec90f2c6
parent 562
740b1133f1b6
child 638
f22742d5daa3
permissions
-rw-r--r--

8025629: load function should support a way to load scripts from classpath
Reviewed-by: lagergren, hannesw, attila

     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.
     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.
    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).
    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.
    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"/>
    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"/>
    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}"/>
    50     <!-- enable/disable make code coverage -->
    51     <condition property="cc.enabled">
    52         <istrue value="${make.code.coverage}" />
    53     </condition>
    55     <!-- exclude tests in exclude lists -->
    56     <condition property="exclude.list" value="./exclude/exclude_list_cc.txt" else="./exclude/exclude_list.txt">
    57       <istrue value="${make.code.coverage}" />
    58     </condition>
    59   </target>
    61   <target name="init" depends="init-conditions, init-cc">
    63     <!-- extends jvm args -->
    64     <property name="run.test.jvmargs" value="${run.test.jvmargs.main}  ${run.test.cc.jvmargs}"/>
    65     <property name="run.test.jvmargs.octane" value="${run.test.jvmargs.octane.main}  ${run.test.cc.jvmargs}" />
    67     <echo message="run.test.jvmargs=${run.test.jvmargs}"/>
    68     <echo message="run.test.jvmargs.octane=${run.test.jvmargs.octane}"/>
    69     <echo message="run.test.xms=${run.test.xms}"/>
    70     <echo message="run.test.xmx=${run.test.xmx}"/>
    72   </target>
    74   <target name="prepare" depends="init">
    75     <mkdir dir="${build.dir}"/>
    76     <mkdir dir="${build.classes.dir}"/>
    77     <mkdir dir="${build.classes.dir}/META-INF/services"/>
    78     <mkdir dir="${build.test.classes.dir}"/>
    79     <mkdir dir="${dist.dir}"/>
    80     <mkdir dir="${dist.javadoc.dir}"/>
    81   </target>
    83   <target name="clean" depends="init, clean-nasgen, init-cc-cleanup">
    84     <delete includeemptydirs="true">
    85       <fileset dir="${build.dir}" erroronmissingdir="false"/>
    86     </delete>
    87     <delete dir="${dist.dir}"/>
    88   </target>
    90   <!-- do it only if ASM is not available -->
    91   <target name="compile-asm" depends="prepare" unless="asm.available">
    92     <javac srcdir="${jdk.asm.src.dir}"
    93            destdir="${build.classes.dir}"
    94            excludes="**/optimizer/* **/xml/* **/attrs/*"
    95            source="${javac.source}"
    96            target="${javac.target}"
    97            debug="${javac.debug}"
    98            encoding="${javac.encoding}"
    99            includeantruntime="false"/>
   100   </target>
   102   <target name="compile" depends="compile-asm" description="Compiles nashorn">
   103     <javac srcdir="${src.dir}"
   104            destdir="${build.classes.dir}"
   105            classpath="${javac.classpath}"
   106            source="${javac.source}"
   107            target="${javac.target}"
   108            debug="${javac.debug}"
   109            encoding="${javac.encoding}"
   110            includeantruntime="false" fork="true">
   111       <compilerarg value="-J-Djava.ext.dirs="/>
   112       <compilerarg value="-Xlint:unchecked"/>
   113       <compilerarg value="-Xlint:deprecation"/>
   114       <compilerarg value="-XDignore.symbol.file"/>
   115     </javac>
   116     <copy todir="${build.classes.dir}/META-INF/services">
   117        <fileset dir="${meta.inf.dir}/services/"/>
   118     </copy>
   119      <copy todir="${build.classes.dir}/jdk/nashorn/api/scripting/resources">
   120        <fileset dir="${src.dir}/jdk/nashorn/api/scripting/resources/"/>
   121     </copy>
   122     <copy todir="${build.classes.dir}/jdk/nashorn/internal/runtime/resources">
   123        <fileset dir="${src.dir}/jdk/nashorn/internal/runtime/resources/"/>
   124     </copy>
   125     <copy todir="${build.classes.dir}/jdk/nashorn/tools/resources">
   126        <fileset dir="${src.dir}/jdk/nashorn/tools/resources/"/>
   127     </copy>
   128     <copy file="${src.dir}/jdk/internal/dynalink/support/messages.properties" todir="${build.classes.dir}/jdk/internal/dynalink/support"/>
   130     <echo message="full=${nashorn.fullversion}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/>
   131     <echo file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo>
   132     <echo message="release=${nashorn.version}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/>
   133   </target>
   135   <target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar">
   136     <jar jarfile="${dist.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
   137       <fileset dir="${build.classes.dir}"/>
   138       <manifest>
   139         <attribute name="Archiver-Version" value="n/a"/>
   140         <attribute name="Build-Jdk" value="${java.runtime.version}"/>
   141         <attribute name="Built-By" value="n/a"/>
   142         <attribute name="Created-By" value="Ant jar task"/>
   143         <section name="jdk/nashorn/">
   144           <attribute name="Implementation-Title" value="${nashorn.product.name}"/>
   145           <attribute name="Implementation-Version" value="${nashorn.version}"/>
   146         </section>
   147       </manifest>
   148     </jar>
   149   </target>
   151   <target name="use-promoted-nashorn" depends="init">
   152     <delete file="${dist.dir}/nashorn.jar"/>
   153     <copy file="${java.home}/lib/ext/nashorn.jar" todir="${dist.dir}"/>
   154     <property name="compile.suppress.jar" value="defined"/>
   155   </target>
   157   <target name="build-fxshell" depends="jar">
   158     <description>Builds the javafx shell.</description>
   159     <mkdir dir="${fxshell.classes.dir}"/>
   160     <javac srcdir="${fxshell.dir}"
   161            destdir="${fxshell.classes.dir}"
   162            classpath="${dist.jar}:${javac.classpath}"
   163            debug="${javac.debug}"
   164            encoding="${javac.encoding}"
   165            includeantruntime="false">
   166     </javac>
   167     <jar jarfile="${fxshell.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
   168       <fileset dir="${fxshell.classes.dir}"/>
   169       <manifest>
   170         <attribute name="Archiver-Version" value="n/a"/>
   171         <attribute name="Build-Jdk" value="${java.runtime.version}"/>
   172         <attribute name="Built-By" value="n/a"/>
   173         <attribute name="Created-By" value="Ant jar task"/>
   174         <section name="jdk/nashorn/">
   175           <attribute name="Implementation-Title" value="Oracle Nashorn FXShell"/>
   176           <attribute name="Implementation-Version" value="${nashorn.version}"/>
   177         </section>
   178       </manifest>
   179     </jar>
   180   </target>
   182   <target name="javadoc" depends="prepare">
   183     <javadoc destdir="${dist.javadoc.dir}" use="yes" overview="src/overview.html" windowtitle="${nashorn.product.name} ${nashorn.version}" additionalparam="-quiet" failonerror="true">
   184       <classpath>
   185         <pathelement location="${build.classes.dir}"/>
   186       </classpath>
   187       <fileset dir="${src.dir}" includes="**/*.java"/>
   188       <fileset dir="${jdk.asm.src.dir}" includes="**/*.java"/>
   189       <link href="http://docs.oracle.com/javase/7/docs/api/"/>
   190       <!-- The following tags are used only in ASM sources - just ignore these -->
   191       <tag name="label" description="label tag in ASM sources" enabled="false"/>
   192       <tag name="linked" description="linked tag in ASM sources" enabled="false"/>
   193       <tag name="associates" description="associates tag in ASM sources" enabled="false"/>
   194     </javadoc>
   195   </target>
   197   <!-- generate shell.html for shell tool documentation -->
   198   <target name="shelldoc" depends="jar">
   199     <java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true">
   200       <jvmarg line="${ext.class.path}"/>
   201       <arg value="-scripting"/>
   202       <arg value="docs/genshelldoc.js"/>
   203     </java>
   204   </target>
   206   <!-- generate all docs -->
   207   <target name="docs" depends="javadoc, shelldoc"/>
   209   <!-- create .zip and .tar.gz for nashorn binaries and scripts. -->
   210   <target name="dist" depends="jar">
   211       <zip destfile="${build.zip}" basedir=".."
   212           excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
   213       <tar destfile="${build.gzip}" basedir=".." compression="gzip"
   214           excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
   215   </target>
   217   <target name="compile-test" depends="compile, run-nasgen" if="testng.available">
   218     <!-- testng task -->
   219     <taskdef name="testng" classname="org.testng.TestNGAntTask"
   220         classpath="${file.reference.testng.jar}"/>
   222     <javac srcdir="${test.src.dir}"
   223            destdir="${build.test.classes.dir}"
   224            classpath="${javac.test.classpath}"
   225            source="${javac.source}"
   226            target="${javac.target}"
   227            debug="${javac.debug}"
   228            encoding="${javac.encoding}"
   229            includeantruntime="false" fork="true">
   230         <compilerarg value="-J-Djava.ext.dirs="/>
   231         <compilerarg value="-Xlint:unchecked"/>
   232         <compilerarg value="-Xlint:deprecation"/>
   233     </javac>
   235     <copy todir="${build.test.classes.dir}/META-INF/services">
   236        <fileset dir="${test.src.dir}/META-INF/services/"/>
   237     </copy>
   239     <copy todir="${build.test.classes.dir}/jdk/nashorn/internal/runtime/resources">
   240        <fileset dir="${test.src.dir}/jdk/nashorn/internal/runtime/resources"/>
   241     </copy>
   243     <!-- tests that check nashorn internals and internal API -->
   244     <jar jarfile="${nashorn.internal.tests.jar}">
   245       <fileset dir="${build.test.classes.dir}" excludes="**/api/**"/>
   246     </jar>
   248     <!-- tests that check nashorn script engine (jsr-223) API -->
   249     <jar jarfile="${nashorn.api.tests.jar}">
   250       <fileset dir="${build.test.classes.dir}" includes="**/api/**"/>
   251       <fileset dir="${build.test.classes.dir}" includes="**/META-INF/**"/>
   252       <fileset dir="${build.test.classes.dir}" includes="**/resources/*.js"/>
   253     </jar>
   255   </target>
   257   <target name="generate-policy-file" depends="prepare">
   258     <echo file="${build.dir}/nashorn.policy">
   260 grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" {
   261     permission java.security.AllPermission;
   262 };
   264 grant codeBase "file:/${basedir}/${file.reference.testng.jar}" {
   265     permission java.security.AllPermission;
   266 };
   268 grant codeBase "file:/${basedir}/test/script/trusted/*" {
   269     permission java.security.AllPermission;
   270 };
   272 grant codeBase "file:/${basedir}/test/script/basic/*" {
   273     permission java.io.FilePermission "${basedir}/test/script/-", "read";
   274     permission java.io.FilePermission "$${user.dir}", "read";
   275     permission java.util.PropertyPermission "user.dir", "read";
   276     permission java.util.PropertyPermission "nashorn.test.*", "read";
   277 };
   279 grant codeBase "file:/${basedir}/test/script/basic/parser/*" {
   280     permission java.io.FilePermission "${basedir}/test/script/-", "read";
   281     permission java.io.FilePermission "$${user.dir}", "read";
   282     permission java.util.PropertyPermission "user.dir", "read";
   283     permission java.util.PropertyPermission "nashorn.test.*", "read";
   284 };
   286 grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" {
   287     permission java.util.PropertyPermission "java.security.policy", "read";
   288 };
   290 grant codeBase "file:/${basedir}/test/script/basic/classloader.js" {
   291     permission java.lang.RuntimePermission "nashorn.JavaReflection";
   292 };
   294     </echo>
   296     <replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace>    <!--hack for Windows - to make URLs with normal path separators -->
   297     <replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace>   <!--hack for Unix - to avoid leading // in URLs -->
   299   </target>
   301   <target name="check-external-tests">
   302       <available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/>
   303       <available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/>
   304       <available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/>
   305       <available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/>
   306       <available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/>
   307       <available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/>
   308       <available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/>
   309   </target>
   311   <target name="check-testng" unless="testng.available">
   312     <echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under test/lib directory."/>
   313   </target>
   315   <target name="test" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   316     <fileset id="test.classes" dir="${build.test.classes.dir}">
   317       <include name="**/api/javaaccess/*Test.class"/>
   318       <include name="**/api/scripting/*Test.class"/>
   319       <include name="**/codegen/*Test.class"/>
   320       <include name="**/parser/*Test.class"/>
   321       <include name="**/runtime/*Test.class"/>
   322       <include name="**/runtime/regexp/*Test.class"/>
   323       <include name="**/runtime/regexp/joni/*Test.class"/>
   324       <include name="**/framework/*Test.class"/>
   325     </fileset>
   327     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
   328        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
   329       <jvmarg line="${ext.class.path}"/>
   330       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
   331       <propertyset>
   332         <propertyref prefix="test-sys-prop."/>
   333         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   334       </propertyset>
   335       <sysproperty key="test.js.excludes.file" value="${exclude.list}"/>
   336       <classpath>
   337           <pathelement path="${run.test.classpath}"/>
   338       </classpath>
   339     </testng>
   340   </target>
   342   <target name="test-basicparallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file">
   343       <!-- use just build.test.classes.dir to avoid referring to TestNG -->
   344       <java classname="${parallel.test.runner}" dir="${basedir}" classpath="${build.test.classes.dir}" failonerror="true" fork="true">
   345       <jvmarg line="${ext.class.path}"/>
   346       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
   347       <syspropertyset>
   348           <propertyref prefix="test-sys-prop."/>
   349           <mapper type="glob" from="test-sys-prop.*" to="*"/>
   350       </syspropertyset>
   351       </java>
   352   </target>
   354   <target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   355     <fileset id="test.classes" dir="${build.test.classes.dir}">
   356        <include name="**/framework/*Test.class"/>
   357     </fileset>
   359     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
   360        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
   361       <jvmarg line="${ext.class.path}"/>
   362       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
   363       <propertyset>
   364         <propertyref prefix="test262-test-sys-prop."/>
   365         <mapper from="test262-test-sys-prop.*" to="*" type="glob"/>
   366       </propertyset>
   367       <classpath>
   368           <pathelement path="${run.test.classpath}"/>
   369       </classpath>
   370     </testng>
   371   </target>
   373   <target name="test262parallel" depends="test262-parallel"/>
   375   <target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   376     <!-- use just build.test.classes.dir to avoid referring to TestNG -->
   377     <java classname="${parallel.test.runner}" dir="${basedir}" fork="true">
   378       <jvmarg line="${ext.class.path}"/>
   379       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
   380       <classpath>
   381           <pathelement path="${run.test.classpath}"/>
   382       </classpath>
   383       <syspropertyset>
   384           <propertyref prefix="test262-test-sys-prop."/>
   385           <mapper type="glob" from="test262-test-sys-prop.*" to="*"/>
   386       </syspropertyset>
   387     </java>
   388   </target>
   390   <target name="all" depends="test, docs"
   391       description="Build, test and generate docs for nashorn"/>
   393   <target name="run" depends="jar"
   394       description="Run the shell with a sample script">
   395     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
   396         <jvmarg line="${ext.class.path}"/>
   397         <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
   398         <arg value="-dump-on-error"/>
   399         <arg value="test.js"/>
   400     </java>
   401   </target>
   403   <target name="debug" depends="jar"
   404       description="Debug the shell with a sample script">
   405     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
   406         <jvmarg line="${ext.class.path}"/>
   407         <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
   408         <arg value="--print-code"/>
   409         <arg value="--verify-code"/>
   410         <arg value="--print-symbols"/>
   411         <jvmarg value="-Dnashorn.codegen.debug=true"/>
   412         <arg value="test.js"/>
   413     </java>
   414   </target>
   416   <!-- targets to get external script tests -->
   418   <!-- test262 test suite -->
   419   <target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}">
   420     <!-- clone test262 mercurial repo -->
   421     <exec executable="${hg.executable}">
   422        <arg value="clone"/>
   423        <arg value="http://hg.ecmascript.org/tests/test262"/>
   424        <arg value="${test.external.dir}/test262"/>
   425     </exec>
   426   </target>
   427   <target name="update-test262" depends="init" if="${test-sys-prop.external.test262}">
   428     <!-- update test262 mercurial repo -->
   429     <exec executable="${hg.executable}" dir="${test.external.dir}/test262">
   430        <arg value="pull"/>
   431        <arg value="-u"/>
   432     </exec>
   433   </target>
   435   <!-- octane benchmark -->
   436   <target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}">
   437     <!-- checkout octane benchmarks -->
   438     <exec executable="${svn.executable}">
   439        <arg value="--non-interactive"/>
   440        <arg value="--trust-server-cert"/>
   441        <arg value="checkout"/>
   442        <arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/>
   443        <arg value="${test.external.dir}/octane"/>
   444     </exec>
   445   </target>
   446   <target name="update-octane" depends="init" if="${test-sys-prop.external.octane}">
   447     <!-- update octane benchmarks -->
   448     <exec executable="${svn.executable}" dir="${test.external.dir}/octane">
   449        <arg value="--non-interactive"/>
   450        <arg value="--trust-server-cert"/>
   451        <arg value="update"/>
   452     </exec>
   453   </target>
   455   <!-- sunspider benchmark -->
   456   <target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}">
   457     <!-- checkout sunspider -->
   458     <exec executable="${svn.executable}">
   459        <arg value="--non-interactive"/>
   460        <arg value="--trust-server-cert"/>
   461        <arg value="checkout"/>
   462        <arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/>
   463        <arg value="${test.external.dir}/sunspider"/>
   464     </exec>
   465   </target>
   466   <target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}">
   467     <!-- update sunspider -->
   468     <exec executable="${svn.executable}" dir="${test.external.dir}/sunspider">
   469        <arg value="--non-interactive"/>
   470        <arg value="--trust-server-cert"/>
   471        <arg value="update"/>
   472     </exec>
   473   </target>
   475   <!-- get all external test scripts -->
   476   <target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider">
   477     <!-- make external test dir -->
   478     <mkdir dir="${test.external.dir}"/>
   480     <!-- jquery -->
   481     <mkdir dir="${test.external.dir}/jquery"/>
   482     <get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
   483     <get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
   485     <!-- prototype -->
   486     <mkdir dir="${test.external.dir}/prototype"/>
   487     <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"/>
   489     <!-- underscorejs -->
   490     <mkdir dir="${test.external.dir}/underscore"/>
   491     <get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
   492     <get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
   494     <!-- yui -->
   495     <mkdir dir="${test.external.dir}/yui"/>
   496     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
   497     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
   499   </target>
   501   <!-- update external test suites that are pulled from source control systems -->
   502   <target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/>
   504   <!-- run all perf tests -->
   505   <target name="perf" depends="externals, update-externals, sunspider, octane"/>
   507   <!-- run all tests -->
   508   <target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}">
   509      <fail message="Exiting.."/>
   510   </target>
   512   <target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/>
   514 </project>

mercurial