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