make/build.xml

Fri, 05 Jul 2013 14:38:04 +0530

author
sundar
date
Fri, 05 Jul 2013 14:38:04 +0530
changeset 414
ec84ba68ad39
parent 404
18d467e94150
child 428
798e3aa19718
permissions
-rw-r--r--

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

mercurial