make/build.xml

Tue, 02 Jul 2013 07:45:16 -0300

author
jlaskey
date
Tue, 02 Jul 2013 07:45:16 -0300
changeset 392
5f9abeb0bb50
parent 288
704bc91a0c41
child 404
18d467e94150
permissions
-rw-r--r--

8019580: Build Script Change for Nashorn promotion testing
Reviewed-by: jlaskey
Contributed-by: eugene.drobitko@oracle.com

     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">
   104       <compilerarg value="-Xlint:unchecked"/>
   105       <compilerarg value="-Xlint:deprecation"/>
   106       <compilerarg value="-XDignore.symbol.file"/>
   107     </javac>
   108     <copy todir="${build.classes.dir}/META-INF/services">
   109        <fileset dir="${meta.inf.dir}/services/"/>
   110     </copy>
   111      <copy todir="${build.classes.dir}/jdk/nashorn/api/scripting/resources">
   112        <fileset dir="${src.dir}/jdk/nashorn/api/scripting/resources/"/>
   113     </copy>
   114     <copy todir="${build.classes.dir}/jdk/nashorn/internal/runtime/resources">
   115        <fileset dir="${src.dir}/jdk/nashorn/internal/runtime/resources/"/>
   116     </copy>
   117     <copy todir="${build.classes.dir}/jdk/nashorn/tools/resources">
   118        <fileset dir="${src.dir}/jdk/nashorn/tools/resources/"/>
   119     </copy>
   120     <copy file="${src.dir}/jdk/internal/dynalink/support/messages.properties" todir="${build.classes.dir}/jdk/internal/dynalink/support"/>
   122     <echo message="full=${nashorn.fullversion}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties"/>
   123     <echo file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true">${line.separator}</echo>
   124     <echo message="release=${nashorn.version}" file="${build.classes.dir}/jdk/nashorn/internal/runtime/resources/version.properties" append="true"/>
   125   </target>
   127   <target name="jar" depends="compile, run-nasgen, generate-cc-template" description="Creates nashorn.jar" unless="compile.suppress.jar">
   128     <jar jarfile="${dist.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
   129       <fileset dir="${build.classes.dir}"/>
   130       <manifest>
   131         <attribute name="Archiver-Version" value="n/a"/>
   132         <attribute name="Build-Jdk" value="${java.runtime.version}"/>
   133         <attribute name="Built-By" value="n/a"/>
   134         <attribute name="Created-By" value="Ant jar task"/>
   135         <section name="jdk/nashorn/">
   136           <attribute name="Implementation-Title" value="${nashorn.product.name}"/>
   137           <attribute name="Implementation-Version" value="${nashorn.version}"/>
   138         </section>
   139       </manifest>
   140     </jar>
   141   </target>
   143   <target name="use-promoted-nashorn" depends="init">
   144     <delete file="${dist.dir}/nashorn.jar"/>
   145     <copy file="${java.home}/lib/ext/nashorn.jar" todir="${dist.dir}"/>
   146     <property name="compile.suppress.jar" value="defined"/>
   147   </target>
   149   <target name="build-fxshell" depends="jar">
   150     <description>Builds the javafx shell.</description>
   151     <mkdir dir="${fxshell.classes.dir}"/>
   152     <javac srcdir="${fxshell.dir}"
   153            destdir="${fxshell.classes.dir}"
   154            classpath="${dist.jar}:${javac.classpath}"
   155            debug="${javac.debug}"
   156            encoding="${javac.encoding}"
   157            includeantruntime="false">
   158     </javac>
   159     <jar jarfile="${fxshell.jar}" manifest="${meta.inf.dir}/MANIFEST.MF" index="true" filesetmanifest="merge">
   160       <fileset dir="${fxshell.classes.dir}"/>
   161       <manifest>
   162         <attribute name="Archiver-Version" value="n/a"/>
   163         <attribute name="Build-Jdk" value="${java.runtime.version}"/>
   164         <attribute name="Built-By" value="n/a"/>
   165         <attribute name="Created-By" value="Ant jar task"/>
   166         <section name="jdk/nashorn/">
   167           <attribute name="Implementation-Title" value="Oracle Nashorn FXShell"/>
   168           <attribute name="Implementation-Version" value="${nashorn.version}"/>
   169         </section>
   170       </manifest>
   171     </jar>
   172   </target>
   174   <target name="javadoc" depends="prepare">
   175     <javadoc destdir="${dist.javadoc.dir}" use="yes" overview="src/overview.html" windowtitle="${nashorn.product.name} ${nashorn.version}" additionalparam="-quiet" failonerror="true">
   176       <classpath>
   177         <pathelement location="${build.classes.dir}"/>
   178       </classpath>
   179       <fileset dir="${src.dir}" includes="**/*.java"/>
   180       <fileset dir="${jdk.asm.src.dir}" includes="**/*.java"/>
   181       <link href="http://docs.oracle.com/javase/7/docs/api/"/>
   182       <!-- The following tags are used only in ASM sources - just ignore these -->
   183       <tag name="label" description="label tag in ASM sources" enabled="false"/>
   184       <tag name="linked" description="linked tag in ASM sources" enabled="false"/>
   185       <tag name="associates" description="associates tag in ASM sources" enabled="false"/>
   186     </javadoc>
   187   </target>
   189   <!-- generate shell.html for shell tool documentation -->
   190   <target name="shelldoc" depends="jar">
   191     <java classname="${nashorn.shell.tool}" dir="${basedir}" output="${dist.dir}/shell.html" failonerror="true" fork="true">
   192       <jvmarg line="${ext.class.path}"/>
   193       <arg value="-scripting"/>
   194       <arg value="docs/genshelldoc.js"/>
   195     </java>
   196   </target>
   198   <!-- generate all docs -->
   199   <target name="docs" depends="javadoc, shelldoc"/>
   201   <!-- create .zip and .tar.gz for nashorn binaries and scripts. -->
   202   <target name="dist" depends="jar">
   203       <zip destfile="${build.zip}" basedir=".."
   204           excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
   205       <tar destfile="${build.gzip}" basedir=".." compression="gzip"
   206           excludes="nashorn/bin/*.sh" includes="nashorn/bin/** nashorn/dist/**"/>
   207   </target>
   209   <target name="compile-test" depends="compile, run-nasgen" if="testng.available">
   210     <!-- testng task -->
   211     <taskdef name="testng" classname="org.testng.TestNGAntTask"
   212         classpath="${file.reference.testng.jar}"/>
   214     <javac srcdir="${test.src.dir}"
   215            destdir="${build.test.classes.dir}"
   216            classpath="${javac.test.classpath}"
   217            source="${javac.source}"
   218            target="${javac.target}"
   219            debug="${javac.debug}"
   220            encoding="${javac.encoding}"
   221            includeantruntime="false">
   222         <compilerarg line="-extdirs &quot;&quot;"/>
   223     </javac>
   225     <!-- tests that check nashorn internals and internal API -->
   226     <jar jarfile="${nashorn.internal.tests.jar}">
   227       <fileset dir="${build.test.classes.dir}" excludes="**/api/**"/>
   228     </jar>
   230     <!-- tests that check nashorn script engine (jsr-223) API -->
   231     <jar jarfile="${nashorn.api.tests.jar}">
   232       <fileset dir="${build.test.classes.dir}" includes="**/api/**"/>
   233     </jar>
   235   </target>
   237   <target name="generate-policy-file" depends="prepare">
   238     <!-- Generating nashorn.policy file -->
   240     <!-- nashorn internal tests jar requires AllPermission -->
   241     <echo message="grant codeBase &quot;file:/${basedir}/${nashorn.internal.tests.jar}&quot; {" file="${build.dir}/nashorn.policy"/>
   242     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   243     <echo message="    permission java.security.AllPermission;" file="${build.dir}/nashorn.policy" append="true"/>
   244     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   245     <echo message="};" file="${build.dir}/nashorn.policy" append="true"/>
   246     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   248     <!-- TestNG framework jar needs AllPermission -->
   249     <echo message="grant codeBase &quot;file:/${basedir}/${file.reference.testng.jar}&quot; {" file="${build.dir}/nashorn.policy" append="true"/>
   250     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   251     <echo message="    permission java.security.AllPermission;" file="${build.dir}/nashorn.policy" append="true"/>
   252     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   253     <echo message="};" file="${build.dir}/nashorn.policy" append="true"/>
   254     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   256     <!-- AllPermission to test/script/trusted tests -->
   257     <echo message="grant codeBase &quot;file:/${basedir}/test/script/trusted/*&quot; {" file="${build.dir}/nashorn.policy" append="true"/>
   258     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   259     <echo message="    permission java.security.AllPermission;" file="${build.dir}/nashorn.policy" append="true"/>
   260     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   261     <echo message="};" file="${build.dir}/nashorn.policy" append="true"/>
   262     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   264     <echo message="grant codeBase &quot;file:/${basedir}/test/script/basic/*&quot; {" file="${build.dir}/nashorn.policy" append="true"/>
   265     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   266     <!-- test/script/basic .js scripts load other script tests -->
   267     <echo message="    permission java.io.FilePermission &quot;${basedir}/test/script/-&quot;, &quot;read&quot;;" file="${build.dir}/nashorn.policy" append="true"/>
   268     <echo message="    permission java.io.FilePermission &quot;user.dir&quot;, &quot;read&quot;;" file="${build.dir}/nashorn.policy" append="true"/>
   269     <echo message="    permission java.util.PropertyPermission &quot;user.dir&quot;, &quot;read&quot;;" file="${build.dir}/nashorn.policy" append="true"/>
   270     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   271     <!-- test/script/basic .js scripts can read nashorn.test.* properties -->
   272     <echo message="    permission java.util.PropertyPermission &quot;nashorn.test.*&quot;, &quot;read&quot;;" file="${build.dir}/nashorn.policy" append="true"/>
   273     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   274     <echo message="};" file="${build.dir}/nashorn.policy" append="true"/>
   275     <echo message="" file="${build.dir}/nashorn.policy" append="true"/>
   277     <replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace>    <!--hack for Windows - to make URLs with normal path separators -->
   278     <replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace>   <!--hack for Unix - to avoid leading // in URLs -->
   280   </target>
   282   <target name="check-external-tests">
   283       <available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/>
   284       <available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/>
   285       <available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/>
   286       <available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/>
   287       <available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/>
   288       <available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/>
   289       <available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/>
   290   </target>
   292   <target name="check-testng" unless="testng.available">
   293     <echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under test/lib directory."/>
   294   </target>
   296   <target name="test" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   297     <java classname="${nashorn.shell.tool}" fork="true" dir="${test.script.dir}/representations" output="${build.dir}/output1.log" error="${build.dir}/err.log">
   298       <jvmarg line="${ext.class.path}"/>
   299       <jvmarg line="-Dnashorn.fields.dual=true"/>
   300       <arg value="NASHORN-592a.js"/>
   301     </java>
   302     <java classname="${nashorn.shell.tool}" fork="true" dir="${test.script.dir}/representations" output="${build.dir}/output2.log" error="${build.dir}/err.log">
   303       <jvmarg line="${ext.class.path}"/>
   304       <arg value="NASHORN-592a.js"/>
   305     </java>
   306     <condition property="representation-ok">
   307       <filesmatch file1="${build.dir}/output1.log" file2="${build.dir}/output2.log"/>
   308     </condition>
   309     <fail unless="representation-ok">Representation test failed - output differs!</fail>
   310     <fileset id="test.classes" dir="${build.test.classes.dir}">
   311       <include name="**/api/javaaccess/*Test.class"/>
   312       <include name="**/api/scripting/*Test.class"/>
   313       <include name="**/codegen/*Test.class"/>
   314       <include name="**/parser/*Test.class"/>
   315       <include name="**/runtime/*Test.class"/>
   316       <include name="**/runtime/regexp/*Test.class"/>
   317       <include name="**/runtime/regexp/joni/*Test.class"/>
   318       <include name="**/framework/*Test.class"/>
   319     </fileset>
   321     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
   322        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
   323       <jvmarg line="${ext.class.path}"/>
   324       <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/>
   325       <propertyset>
   326         <propertyref prefix="test-sys-prop."/>
   327         <mapper from="test-sys-prop.*" to="*" type="glob"/>
   328       </propertyset>
   329       <classpath>
   330           <pathelement path="${run.test.classpath}"/>
   331       </classpath>
   332     </testng>
   333   </target>
   335   <target name="test-basicparallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file">
   336       <!-- use just build.test.classes.dir to avoid referring to TestNG -->
   337       <java classname="${parallel.test.runner}" dir="${basedir}" classpath="${build.test.classes.dir}" failonerror="true" fork="true">
   338       <jvmarg line="${ext.class.path}"/>
   339       <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/>
   340       <syspropertyset>
   341           <propertyref prefix="test-sys-prop."/>
   342           <mapper type="glob" from="test-sys-prop.*" to="*"/>
   343       </syspropertyset>
   344       </java>
   345   </target>
   347   <target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   348     <fileset id="test.classes" dir="${build.test.classes.dir}">
   349        <include name="**/framework/*Test.class"/>
   350     </fileset>
   352     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
   353        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
   354       <jvmarg line="${ext.class.path}"/>
   355       <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/>
   356       <propertyset>
   357         <propertyref prefix="test262-test-sys-prop."/>
   358         <mapper from="test262-test-sys-prop.*" to="*" type="glob"/>
   359       </propertyset>
   360       <classpath>
   361           <pathelement path="${run.test.classpath}"/>
   362       </classpath>
   363     </testng>
   364   </target>
   366   <target name="test262parallel" depends="test262-parallel"/>
   368   <target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
   369     <!-- use just build.test.classes.dir to avoid referring to TestNG -->
   370     <java classname="${parallel.test.runner}" dir="${basedir}" fork="true">
   371       <jvmarg line="${ext.class.path}"/>
   372       <jvmarg line="${run.test.jvmargs} ${run.test.jvmsecurityargs}"/>
   373       <classpath>
   374           <pathelement path="${run.test.classpath}"/>
   375       </classpath>
   376       <syspropertyset>
   377           <propertyref prefix="test262-test-sys-prop."/>
   378           <mapper type="glob" from="test262-test-sys-prop.*" to="*"/>
   379       </syspropertyset>
   380     </java>
   381   </target>
   383   <target name="all" depends="test, docs"
   384       description="Build, test and generate docs for nashorn"/>
   386   <target name="run" depends="jar"
   387       description="Run the shell with a sample script">
   388     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
   389         <jvmarg line="${ext.class.path}"/>
   390         <jvmarg line="${run.test.jvmargs}"/>
   391         <arg value="-dump-on-error"/>
   392         <arg value="test.js"/>
   393     </java>
   394   </target>
   396   <target name="debug" depends="jar"
   397       description="Debug the shell with a sample script">
   398     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
   399         <jvmarg line="${ext.class.path}"/>
   400         <jvmarg line="${run.test.jvmargs}"/>
   401         <arg value="--print-code"/>
   402         <arg value="--verify-code"/>
   403         <arg value="--print-symbols"/>
   404         <jvmarg value="-Dnashorn.codegen.debug=true"/>
   405         <arg value="test.js"/>
   406     </java>
   407   </target>
   409   <!-- targets to get external script tests -->
   411   <!-- test262 test suite -->
   412   <target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}">
   413     <!-- clone test262 mercurial repo -->
   414     <exec executable="${hg.executable}">
   415        <arg value="clone"/>
   416        <arg value="http://hg.ecmascript.org/tests/test262"/>
   417        <arg value="${test.external.dir}/test262"/>
   418     </exec>
   419   </target>
   420   <target name="update-test262" depends="init" if="${test-sys-prop.external.test262}">
   421     <!-- update test262 mercurial repo -->
   422     <exec executable="${hg.executable}" dir="${test.external.dir}/test262">
   423        <arg value="pull"/>
   424        <arg value="-u"/>
   425     </exec>
   426   </target>
   428   <!-- octane benchmark -->
   429   <target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}">
   430     <!-- checkout octane benchmarks -->
   431     <exec executable="${svn.executable}">
   432        <arg value="--non-interactive"/>
   433        <arg value="--trust-server-cert"/>
   434        <arg value="checkout"/>
   435        <arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/>
   436        <arg value="${test.external.dir}/octane"/>
   437     </exec>
   438   </target>
   439   <target name="update-octane" depends="init" if="${test-sys-prop.external.octane}">
   440     <!-- update octane benchmarks -->
   441     <exec executable="${svn.executable}" dir="${test.external.dir}/octane">
   442        <arg value="--non-interactive"/>
   443        <arg value="--trust-server-cert"/>
   444        <arg value="update"/>
   445     </exec>
   446   </target>
   448   <!-- sunspider benchmark -->
   449   <target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}">
   450     <!-- checkout sunspider -->
   451     <exec executable="${svn.executable}">
   452        <arg value="--non-interactive"/>
   453        <arg value="--trust-server-cert"/>
   454        <arg value="checkout"/>
   455        <arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/>
   456        <arg value="${test.external.dir}/sunspider"/>
   457     </exec>
   458   </target>
   459   <target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}">
   460     <!-- update sunspider -->
   461     <exec executable="${svn.executable}" dir="${test.external.dir}/sunspider">
   462        <arg value="--non-interactive"/>
   463        <arg value="--trust-server-cert"/>
   464        <arg value="update"/>
   465     </exec>
   466   </target>
   468   <!-- get all external test scripts -->
   469   <target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider">
   470     <!-- make external test dir -->
   471     <mkdir dir="${test.external.dir}"/>
   473     <!-- jquery -->
   474     <mkdir dir="${test.external.dir}/jquery"/>
   475     <get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
   476     <get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
   478     <!-- prototype -->
   479     <mkdir dir="${test.external.dir}/prototype"/>
   480     <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"/>
   482     <!-- underscorejs -->
   483     <mkdir dir="${test.external.dir}/underscore"/>
   484     <get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
   485     <get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
   487     <!-- yui -->
   488     <mkdir dir="${test.external.dir}/yui"/>
   489     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
   490     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
   492   </target>
   494   <!-- update external test suites that are pulled from source control systems -->
   495   <target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/>
   497   <!-- run all perf tests -->
   498   <target name="perf" depends="externals, update-externals, sunspider, octane"/>
   500   <!-- run all tests -->
   501   <target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}">
   502      <fail message="Exiting.."/>
   503   </target>
   505   <target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/>
   507 </project>

mercurial