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 
 270 grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" {
 271     permission java.security.AllPermission;
 272 };
 273 
 274 grant codeBase "file:/${basedir}/${file.reference.testng.jar}" {
 275     permission java.security.AllPermission;
 276 };
 277 
 278 grant codeBase "file:/${basedir}/test/script/trusted/*" {
 279     permission java.security.AllPermission;
 280 };
 281 
 282 grant 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 
 289 grant 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 
 296 grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" {
 297     permission java.util.PropertyPermission "java.security.policy", "read";
 298 };
 299 
 300 grant 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     <condition property="jfx.prism.order" value="-Dprism.order=j2d" else=" ">
 376                 <not>
 377             <os family="mac"/>
 378         </not>
 379         </condition>
 380     
 381     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
 382        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
 383       <jvmarg line="${ext.class.path}"/>
 384       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
 385       <propertyset>
 386         <propertyref prefix="testjfx-test-sys-prop."/>
 387         <mapper from="testjfx-test-sys-prop.*" to="*" type="glob"/>
 388       </propertyset>
 389       <sysproperty key="test.fork.jvm.options" value="${testjfx-test-sys-prop.test.fork.jvm.options} ${jfx.prism.order}"/>
 390       <classpath>
 391           <pathelement path="${testjfx.run.test.classpath}"/>
 392       </classpath>
 393     </testng>
 394   </target>
 395   
 396   <target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
 397     <fileset id="test.classes" dir="${build.test.classes.dir}">
 398        <include name="**/framework/*Test.class"/>
 399     </fileset>
 400 
 401     <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
 402        verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
 403       <jvmarg line="${ext.class.path}"/>
 404       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
 405       <propertyset>
 406         <propertyref prefix="test262-test-sys-prop."/>
 407         <mapper from="test262-test-sys-prop.*" to="*" type="glob"/>
 408       </propertyset>
 409       <classpath>
 410           <pathelement path="${run.test.classpath}"/>
 411       </classpath>
 412     </testng>
 413   </target>
 414 
 415   <target name="test262parallel" depends="test262-parallel"/>
 416 
 417   <target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
 418     <!-- use just build.test.classes.dir to avoid referring to TestNG -->
 419     <java classname="${parallel.test.runner}" dir="${basedir}" fork="true">
 420       <jvmarg line="${ext.class.path}"/>
 421       <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
 422       <classpath>
 423           <pathelement path="${run.test.classpath}"/>
 424       </classpath>
 425       <syspropertyset>
 426           <propertyref prefix="test262-test-sys-prop."/>
 427           <mapper type="glob" from="test262-test-sys-prop.*" to="*"/>
 428       </syspropertyset>
 429     </java>
 430   </target>
 431 
 432   <target name="all" depends="test, docs"
 433       description="Build, test and generate docs for nashorn"/>
 434 
 435   <target name="run" depends="jar"
 436       description="Run the shell with a sample script">
 437     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
 438         <jvmarg line="${ext.class.path}"/>
 439         <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
 440         <arg value="-dump-on-error"/>
 441         <arg value="test.js"/>
 442     </java>
 443   </target>
 444 
 445   <target name="debug" depends="jar"
 446       description="Debug the shell with a sample script">
 447     <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
 448         <jvmarg line="${ext.class.path}"/>
 449         <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
 450         <arg value="--print-code"/>
 451         <arg value="--verify-code"/>
 452         <arg value="--print-symbols"/>
 453         <jvmarg value="-Dnashorn.codegen.debug=true"/>
 454         <arg value="test.js"/>
 455     </java>
 456   </target>
 457 
 458   <!-- targets to get external script tests -->
 459 
 460   <!-- test262 test suite -->
 461   <target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}">
 462     <!-- clone test262 mercurial repo -->
 463     <exec executable="${hg.executable}">
 464        <arg value="clone"/>
 465        <arg value="http://hg.ecmascript.org/tests/test262"/>
 466        <arg value="${test.external.dir}/test262"/>
 467     </exec>
 468   </target>
 469   <target name="update-test262" depends="init" if="${test-sys-prop.external.test262}">
 470     <!-- update test262 mercurial repo -->
 471     <exec executable="${hg.executable}" dir="${test.external.dir}/test262">
 472        <arg value="pull"/>
 473        <arg value="-u"/>
 474     </exec>
 475   </target>
 476 
 477   <!-- octane benchmark -->
 478   <target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}">
 479     <!-- checkout octane benchmarks -->
 480     <exec executable="${svn.executable}">
 481        <arg value="--non-interactive"/>
 482        <arg value="--trust-server-cert"/>
 483        <arg value="checkout"/>
 484        <arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/>
 485        <arg value="${test.external.dir}/octane"/>
 486     </exec>
 487   </target>
 488   <target name="update-octane" depends="init" if="${test-sys-prop.external.octane}">
 489     <!-- update octane benchmarks -->
 490     <exec executable="${svn.executable}" dir="${test.external.dir}/octane">
 491        <arg value="--non-interactive"/>
 492        <arg value="--trust-server-cert"/>
 493        <arg value="update"/>
 494     </exec>
 495   </target>
 496 
 497   <!-- sunspider benchmark -->
 498   <target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}">
 499     <!-- checkout sunspider -->
 500     <exec executable="${svn.executable}">
 501        <arg value="--non-interactive"/>
 502        <arg value="--trust-server-cert"/>
 503        <arg value="checkout"/>
 504        <arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/>
 505        <arg value="${test.external.dir}/sunspider"/>
 506     </exec>
 507   </target>
 508   <target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}">
 509     <!-- update sunspider -->
 510     <exec executable="${svn.executable}" dir="${test.external.dir}/sunspider">
 511        <arg value="--non-interactive"/>
 512        <arg value="--trust-server-cert"/>
 513        <arg value="update"/>
 514     </exec>
 515   </target>
 516 
 517   <!-- get all external test scripts -->
 518   <target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider">
 519     <!-- make external test dir -->
 520     <mkdir dir="${test.external.dir}"/>
 521 
 522     <!-- jquery -->
 523     <mkdir dir="${test.external.dir}/jquery"/>
 524     <get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
 525     <get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
 526 
 527     <!-- prototype -->
 528     <mkdir dir="${test.external.dir}/prototype"/>
 529     <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"/>
 530 
 531     <!-- underscorejs -->
 532     <mkdir dir="${test.external.dir}/underscore"/>
 533     <get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
 534     <get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
 535 
 536     <!-- yui -->
 537     <mkdir dir="${test.external.dir}/yui"/>
 538     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
 539     <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
 540 
 541   </target>
 542 
 543   <!-- update external test suites that are pulled from source control systems -->
 544   <target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/>
 545 
 546   <!-- run all perf tests -->
 547   <target name="perf" depends="externals, update-externals, sunspider, octane"/>
 548 
 549   <!-- run all tests -->
 550   <target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}">
 551      <fail message="Exiting.."/>
 552   </target>
 553 
 554   <target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/>
 555 
 556 </project>