build.xml revision 561:740b1133f1b6
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
50    <!-- enable/disable make code coverage -->
51    <condition property="cc.enabled">
52        <istrue value="${make.code.coverage}" />
53    </condition>
54
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>
60
61  <target name="init" depends="init-conditions, init-cc">
62
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}" />
66
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}"/>
71
72  </target>
73
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>
82
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>
89
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>
101
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"/>
129
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>
134
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>
150
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>
156
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>
181
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>
196
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>
205
206  <!-- generate all docs -->
207  <target name="docs" depends="javadoc, shelldoc"/>
208
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>
216
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}"/>
221
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>
234
235    <copy todir="${build.test.classes.dir}/META-INF/services">
236       <fileset dir="${test.src.dir}/META-INF/services/"/>
237    </copy>
238
239    <!-- tests that check nashorn internals and internal API -->
240    <jar jarfile="${nashorn.internal.tests.jar}">
241      <fileset dir="${build.test.classes.dir}" excludes="**/api/**"/>
242    </jar>
243
244    <!-- tests that check nashorn script engine (jsr-223) API -->
245    <jar jarfile="${nashorn.api.tests.jar}">
246      <fileset dir="${build.test.classes.dir}" includes="**/api/**"/>
247      <fileset dir="${build.test.classes.dir}" includes="**/META-INF/**"/>
248    </jar>
249
250  </target>
251
252  <target name="generate-policy-file" depends="prepare">
253    <echo file="${build.dir}/nashorn.policy">
254
255grant codeBase "file:/${basedir}/${nashorn.internal.tests.jar}" {
256    permission java.security.AllPermission;
257};
258
259grant codeBase "file:/${basedir}/${file.reference.testng.jar}" {
260    permission java.security.AllPermission;
261};
262
263grant codeBase "file:/${basedir}/test/script/trusted/*" {
264    permission java.security.AllPermission;
265};
266
267grant codeBase "file:/${basedir}/test/script/basic/*" {
268    permission java.io.FilePermission "${basedir}/test/script/-", "read";
269    permission java.io.FilePermission "$${user.dir}", "read";
270    permission java.util.PropertyPermission "user.dir", "read";
271    permission java.util.PropertyPermission "nashorn.test.*", "read";
272};
273
274grant codeBase "file:/${basedir}/test/script/basic/parser/*" {
275    permission java.io.FilePermission "${basedir}/test/script/-", "read";
276    permission java.io.FilePermission "$${user.dir}", "read";
277    permission java.util.PropertyPermission "user.dir", "read";
278    permission java.util.PropertyPermission "nashorn.test.*", "read";
279};
280
281grant codeBase "file:/${basedir}/test/script/basic/JDK-8010946-privileged.js" {
282    permission java.util.PropertyPermission "java.security.policy", "read";
283};
284
285grant codeBase "file:/${basedir}/test/script/basic/classloader.js" {
286    permission java.lang.RuntimePermission "nashorn.JavaReflection";
287};
288
289    </echo>
290
291    <replace file="${build.dir}/nashorn.policy"><replacetoken>\</replacetoken><replacevalue>/</replacevalue></replace>    <!--hack for Windows - to make URLs with normal path separators -->
292    <replace file="${build.dir}/nashorn.policy"><replacetoken>//</replacetoken><replacevalue>/</replacevalue></replace>   <!--hack for Unix - to avoid leading // in URLs -->
293
294  </target>
295
296  <target name="check-external-tests">
297      <available file="${test.external.dir}/prototype" property="test-sys-prop.external.prototype"/>
298      <available file="${test.external.dir}/sunspider" property="test-sys-prop.external.sunspider"/>
299      <available file="${test.external.dir}/underscore" property="test-sys-prop.external.underscore"/>
300      <available file="${test.external.dir}/octane" property="test-sys-prop.external.octane"/>
301      <available file="${test.external.dir}/yui" property="test-sys-prop.external.yui"/>
302      <available file="${test.external.dir}/jquery" property="test-sys-prop.external.jquery"/>
303      <available file="${test.external.dir}/test262" property="test-sys-prop.external.test262"/>
304  </target>
305
306  <target name="check-testng" unless="testng.available">
307    <echo message="WARNING: TestNG not available, will not run tests. Please copy testng.jar under test/lib directory."/>
308  </target>
309
310  <target name="test" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
311    <fileset id="test.classes" dir="${build.test.classes.dir}">
312      <include name="**/api/javaaccess/*Test.class"/>
313      <include name="**/api/scripting/*Test.class"/>
314      <include name="**/codegen/*Test.class"/>
315      <include name="**/parser/*Test.class"/>
316      <include name="**/runtime/*Test.class"/>
317      <include name="**/runtime/regexp/*Test.class"/>
318      <include name="**/runtime/regexp/joni/*Test.class"/>
319      <include name="**/framework/*Test.class"/>
320    </fileset>
321
322    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
323       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
324      <jvmarg line="${ext.class.path}"/>
325      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
326      <propertyset>
327        <propertyref prefix="test-sys-prop."/>
328        <mapper from="test-sys-prop.*" to="*" type="glob"/>
329      </propertyset>
330      <sysproperty key="test.js.excludes.file" value="${exclude.list}"/>
331      <classpath>
332          <pathelement path="${run.test.classpath}"/>
333      </classpath>
334    </testng>
335  </target>
336
337  <target name="test-basicparallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file">
338      <!-- use just build.test.classes.dir to avoid referring to TestNG -->
339      <java classname="${parallel.test.runner}" dir="${basedir}" classpath="${build.test.classes.dir}" failonerror="true" fork="true">
340      <jvmarg line="${ext.class.path}"/>
341      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
342      <syspropertyset>
343          <propertyref prefix="test-sys-prop."/>
344          <mapper type="glob" from="test-sys-prop.*" to="*"/>
345      </syspropertyset>
346      </java>
347  </target>
348
349  <target name="test262" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
350    <fileset id="test.classes" dir="${build.test.classes.dir}">
351       <include name="**/framework/*Test.class"/>
352    </fileset>
353
354    <testng outputdir="${build.test.results.dir}" classfilesetref="test.classes"
355       verbose="${testng.verbose}" haltonfailure="true" useDefaultListeners="false" listeners="${testng.listeners}" workingDir="${basedir}">
356      <jvmarg line="${ext.class.path}"/>
357      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
358      <propertyset>
359        <propertyref prefix="test262-test-sys-prop."/>
360        <mapper from="test262-test-sys-prop.*" to="*" type="glob"/>
361      </propertyset>
362      <classpath>
363          <pathelement path="${run.test.classpath}"/>
364      </classpath>
365    </testng>
366  </target>
367
368  <target name="test262parallel" depends="test262-parallel"/>
369
370  <target name="test262-parallel" depends="jar, check-testng, check-external-tests, compile-test, generate-policy-file" if="testng.available">
371    <!-- use just build.test.classes.dir to avoid referring to TestNG -->
372    <java classname="${parallel.test.runner}" dir="${basedir}" fork="true">
373      <jvmarg line="${ext.class.path}"/>
374      <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx} ${run.test.jvmsecurityargs}"/>
375      <classpath>
376          <pathelement path="${run.test.classpath}"/>
377      </classpath>
378      <syspropertyset>
379          <propertyref prefix="test262-test-sys-prop."/>
380          <mapper type="glob" from="test262-test-sys-prop.*" to="*"/>
381      </syspropertyset>
382    </java>
383  </target>
384
385  <target name="all" depends="test, docs"
386      description="Build, test and generate docs for nashorn"/>
387
388  <target name="run" depends="jar"
389      description="Run the shell with a sample script">
390    <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
391        <jvmarg line="${ext.class.path}"/>
392        <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
393        <arg value="-dump-on-error"/>
394        <arg value="test.js"/>
395    </java>
396  </target>
397
398  <target name="debug" depends="jar"
399      description="Debug the shell with a sample script">
400    <java classname="${nashorn.shell.tool}" fork="true" dir="samples">
401        <jvmarg line="${ext.class.path}"/>
402        <jvmarg line="${run.test.jvmargs} -Xmx${run.test.xmx}"/>
403        <arg value="--print-code"/>
404        <arg value="--verify-code"/>
405        <arg value="--print-symbols"/>
406        <jvmarg value="-Dnashorn.codegen.debug=true"/>
407        <arg value="test.js"/>
408    </java>
409  </target>
410
411  <!-- targets to get external script tests -->
412
413  <!-- test262 test suite -->
414  <target name="get-test262" depends="init" unless="${test-sys-prop.external.test262}">
415    <!-- clone test262 mercurial repo -->
416    <exec executable="${hg.executable}">
417       <arg value="clone"/>
418       <arg value="http://hg.ecmascript.org/tests/test262"/>
419       <arg value="${test.external.dir}/test262"/>
420    </exec>
421  </target>
422  <target name="update-test262" depends="init" if="${test-sys-prop.external.test262}">
423    <!-- update test262 mercurial repo -->
424    <exec executable="${hg.executable}" dir="${test.external.dir}/test262">
425       <arg value="pull"/>
426       <arg value="-u"/>
427    </exec>
428  </target>
429
430  <!-- octane benchmark -->
431  <target name="get-octane" depends="init" unless="${test-sys-prop.external.octane}">
432    <!-- checkout octane benchmarks -->
433    <exec executable="${svn.executable}">
434       <arg value="--non-interactive"/>
435       <arg value="--trust-server-cert"/>
436       <arg value="checkout"/>
437       <arg value="http://octane-benchmark.googlecode.com/svn/trunk/"/>
438       <arg value="${test.external.dir}/octane"/>
439    </exec>
440  </target>
441  <target name="update-octane" depends="init" if="${test-sys-prop.external.octane}">
442    <!-- update octane benchmarks -->
443    <exec executable="${svn.executable}" dir="${test.external.dir}/octane">
444       <arg value="--non-interactive"/>
445       <arg value="--trust-server-cert"/>
446       <arg value="update"/>
447    </exec>
448  </target>
449
450  <!-- sunspider benchmark -->
451  <target name="get-sunspider" depends="init" unless="${test-sys-prop.external.sunspider}">
452    <!-- checkout sunspider -->
453    <exec executable="${svn.executable}">
454       <arg value="--non-interactive"/>
455       <arg value="--trust-server-cert"/>
456       <arg value="checkout"/>
457       <arg value="http://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider"/>
458       <arg value="${test.external.dir}/sunspider"/>
459    </exec>
460  </target>
461  <target name="update-sunspider" depends="init" if="${test-sys-prop.external.sunspider}">
462    <!-- update sunspider -->
463    <exec executable="${svn.executable}" dir="${test.external.dir}/sunspider">
464       <arg value="--non-interactive"/>
465       <arg value="--trust-server-cert"/>
466       <arg value="update"/>
467    </exec>
468  </target>
469
470  <!-- get all external test scripts -->
471  <target name="externals" depends="init, check-external-tests, get-test262, get-octane, get-sunspider">
472    <!-- make external test dir -->
473    <mkdir dir="${test.external.dir}"/>
474
475    <!-- jquery -->
476    <mkdir dir="${test.external.dir}/jquery"/>
477    <get src="http://code.jquery.com/jquery-1.7.2.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
478    <get src="http://code.jquery.com/jquery-1.7.2.min.js" dest="${test.external.dir}/jquery" skipexisting="true" ignoreerrors="true"/>
479
480    <!-- prototype -->
481    <mkdir dir="${test.external.dir}/prototype"/>
482    <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"/>
483
484    <!-- underscorejs -->
485    <mkdir dir="${test.external.dir}/underscore"/>
486    <get src="http://underscorejs.org/underscore.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
487    <get src="http://underscorejs.org/underscore-min.js" dest="${test.external.dir}/underscore" skipexisting="true" ignoreerrors="true"/>
488
489    <!-- yui -->
490    <mkdir dir="${test.external.dir}/yui"/>
491    <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
492    <get src="http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js" dest="${test.external.dir}/yui" skipexisting="true" ignoreerrors="true"/>
493
494  </target>
495
496  <!-- update external test suites that are pulled from source control systems -->
497  <target name="update-externals" depends="init, check-external-tests, update-test262, update-octane, update-sunspider"/>
498
499  <!-- run all perf tests -->
500  <target name="perf" depends="externals, update-externals, sunspider, octane"/>
501
502  <!-- run all tests -->
503  <target name="exit-if-no-testng" depends="init, check-testng" unless="${testng.available}">
504     <fail message="Exiting.."/>
505  </target>
506
507  <target name="alltests" depends="exit-if-no-testng, externals, update-externals, test, test262parallel, perf"/>
508
509</project>
510