ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.109 by jsr166, Sun Jan 20 01:06:24 2013 UTC vs.
Revision 1.148 by jsr166, Sat Jul 20 18:26:16 2013 UTC

# Line 22 | Line 22
22    $HOME/jdk/src/jdk8
23    where each of the above is a complete JDK source tree
24    (e.g. mercurial forest) or a symlink to same.
25 + As of 2013-02, the very latest lambda 8 jdk is needed for jdk8.
26   ------------------------------------------------------------------------------
27    </description>
28  
29 <  <target name="usage" description="Advises user to run with -projecthelp">
30 <    <echo>Run "ant -projecthelp" for full usage information.</echo>
29 >  <!-- Display main targets by running 'ant -projecthelp' -->
30 >  <target name="usage">
31 >    <java classname="org.apache.tools.ant.Main">
32 >      <arg value="-projecthelp" />
33 >    </java>
34    </target>
35  
36  
# Line 35 | Line 39
39  
40  
41    <!-- Compilation options -->
42 <  <property name="build.sourcelevel"    value="1.6"/>
42 >  <property name="build.sourcelevel"    value="6"/>
43    <property name="build.debug"          value="true"/>
44    <property name="build.debuglevel"     value="source,lines,vars"/>
45    <property name="build.deprecation"    value="false"/>
46 +  <property name="build.javadoc.access" value="protected"/>
47 +
48 +  <!-- Tck options; see JSR166TestCase.java -->
49 +  <!-- ant -Djsr166.profileTests=true -Djsr166.runsPerTest=100 test-tck -->
50 +  <property name="jsr166.profileTests"     value="false"/>
51 +  <property name="jsr166.profileThreshold" value="100"/>
52 +  <property name="jsr166.runsPerTest"      value="1"/>
53 +  <!-- Allow running an individual tck test class -->
54 +  <!-- ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck -->
55 +  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
56  
57    <!-- Build locations -->
58    <property name="build.dir"                   location="build"/>
# Line 49 | Line 63
63  
64    <property name="build.4jdk7.dir"             location="${build.dir}/jsr166-4jdk7"/>
65    <property name="build.4jdk7.classes.dir"     location="${build.4jdk7.dir}/classes"/>
66 <  <property name="build.4jdk7.tck.classes.dir" location="${build.4jdk7.dir}/tck/classes"/>
66 >  <property name="build.4jdk7.tck.classes.dir" location="${build.4jdk7.dir}/tck-classes"/>
67    <property name="build.4jdk7.docs.dir"        location="${build.4jdk7.dir}/docs"/>
68  
69    <property name="build.jsr166x.dir"           location="${build.dir}/jsr166x"/>
# Line 57 | Line 71
71    <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
72    <property name="build.extra166y.dir"         location="${build.dir}/extra166y"/>
73  
74 <  <!-- JDK binary locations -->
74 >  <property name="build.jsr166x.classes.dir"   location="${build.jsr166x.dir}/classes"/>
75 >  <property name="build.jsr166y.classes.dir"   location="${build.jsr166y.dir}/classes"/>
76 >  <property name="build.jsr166e.classes.dir"   location="${build.jsr166e.dir}/classes"/>
77 >  <property name="build.extra166y.classes.dir" location="${build.extra166y.dir}/classes"/>
78 >
79 >  <!-- JDK locations -->
80    <property name="jdks.home"  location="${user.home}/jdk"/>
81  
82    <macrodef name="defjdklocations">
# Line 67 | Line 86
86      <property name="java@{v}"       location="${jdk@{v}.home}/bin/java"/>
87      <property name="javac@{v}"      location="${jdk@{v}.home}/bin/javac"/>
88      <property name="javadoc@{v}"    location="${jdk@{v}.home}/bin/javadoc"/>
70    <property name="bootdir@{v}"    location="${jdk@{v}.home}/jre/lib"/>
89      <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"/>
90 <    <property name="bootclasspath@{v}"
91 <     value="${bootdir@{v}}/resources.jar:${bootdir@{v}}/rt.jar:${bootdir@{v}}/jsse.jar:${bootdir@{v}}/jce.jar:${bootdir@{v}}/:${bootdir@{v}}/charsets.jar"/>
90 >    <local name="boot.jar.dir"/>
91 >    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib"/>
92 >    <path id="bootclasspath@{v}">
93 >      <pathelement path="${boot.jar.dir}/resources.jar"/>
94 >      <pathelement path="${boot.jar.dir}/rt.jar"/>
95 >      <pathelement path="${boot.jar.dir}/jsse.jar"/>
96 >      <pathelement path="${boot.jar.dir}/jce.jar"/>
97 >      <pathelement path="${boot.jar.dir}/charsets.jar"/>
98 >    </path>
99 >    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}"/>
100      </sequential>
101    </macrodef>
102  
103 <  <defjdklocations v="6"/>
104 <  <defjdklocations v="7"/>
105 <  <defjdklocations v="8"/>
80 <
81 <  <macrodef name="run-tck-tests">
82 <    <attribute name="jvm"/>
83 <    <attribute name="tck.classes"/>
84 <    <attribute name="product.jar" default="${product.jar}"/>
85 <    <attribute name="jvmflags" default=""/>
103 >  <macrodef name="mirror-dir">
104 >    <attribute name="src"/>
105 >    <attribute name="dst"/>
106      <sequential>
107 <    <java classname="JSR166TestCase"
108 <          jvm="@{jvm}" fork="true">
109 <        <jvmarg value="-Xbootclasspath/p:@{product.jar}"/>
110 <        <jvmarg line="@{jvmflags}"/>
111 <        <classpath>
92 <          <pathelement location="${junit.jar}"/>
93 <          <pathelement location="@{tck.classes}"/>
94 <        </classpath>
95 <    </java>
107 >    <delete dir="@{dst}"/>
108 >    <mkdir dir="@{dst}"/>
109 >    <copy todir="@{dst}" preservelastmodified="true">
110 >      <fileset dir="@{src}"/>
111 >    </copy>
112      </sequential>
113    </macrodef>
114  
115 +  <defjdklocations v="6"/>
116 +  <defjdklocations v="7"/>
117 +  <defjdklocations v="8"/>
118 +
119    <!-- Source locations -->
120    <property name="src.dir"              location="${basedir}/src/main"/>
121    <property name="test.src.dir"         location="${basedir}/src/test"/>
# Line 110 | Line 130
130    <property name="jsr166ysrc.dir"       location="${topsrc.dir}/jsr166y"/>
131    <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
132    <property name="extra166ysrc.dir"     location="${topsrc.dir}/extra166y"/>
113  <property name="jdksrc.dir"           location="/home/dl/1.6.0/j2se/martin/j2se/src/share/classes"/>
133  
134 <  <!-- Distribution locations -->
135 <  <property name="dist.javadocs.dir"          location="${dist.dir}/jsr166.docs"/>
136 <  <property name="dist.4jdk7.docs.dir"        location="${dist.dir}/jsr166-4jdk7.docs"/>
137 <  <property name="dist.jsr166xjavadocs.dir"   location="${dist.dir}/jsr166x.docs"/>
138 <  <property name="dist.jsr166yjavadocs.dir"   location="${dist.dir}/jsr166y.docs"/>
139 <  <property name="dist.jsr166ejavadocs.dir"   location="${dist.dir}/jsr166e.docs"/>
140 <  <property name="dist.extra166yjavadocs.dir" location="${dist.dir}/extra166y.docs"/>
134 >  <!-- Javadoc locations -->
135 >  <property name="docs.dir"          location="${build.dir}/docs"/>
136 >  <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
137 >  <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
138 >  <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
139 >  <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
140 >  <property name="extra166ydocs.dir" location="${build.extra166y.dir}/docs"/>
141 >
142 >  <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
143 >  <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
144 >  <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
145 >  <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
146 >  <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
147 >  <property name="dist.extra166ydocs.dir" location="${dist.dir}/extra166ydocs"/>
148  
149    <!-- Jar locations -->
150    <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
# Line 129 | Line 155
155    <property name="extra166y.jar"    location="${build.extra166y.dir}/extra166y.jar"/>
156    <property name="junit.jar"        location="${lib.dir}/junit.jar"/>
157  
132  <!-- Bootclasspath argument -->
133  <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
134
158    <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
159    <property name="jdkapi5docs.url"      value="http://docs.oracle.com/javase/1.5.0/docs/api/"/>
160    <property name="jdkapi6docs.url"      value="http://docs.oracle.com/javase/6/docs/api/"/>
161    <property name="jdkapi7docs.url"      value="http://docs.oracle.com/javase/7/docs/api/"/>
162  
163    <property name="jdkapi8docs.url"      value="http://download.java.net/jdk8/docs/api/"/>
164 <  <!-- The below does not yet exist as of 2012-11 -->
164 >  <!-- The below does not yet exist as of 2013-01 -->
165    <!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> -->
166  
167    <!-- Default jdk api doc location (latest stable release seems best) -->
168    <property name="jdkapidocs.url"       value="${jdkapi7docs.url}"/>
169  
170 +  <!-- Define the "jtreg" task -->
171 +  <!-- See the docs in "jtreg -onlineHelp" -->
172 +  <taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant"
173 +           classpath="${lib.dir}/jtreg.jar" />
174 +
175    <!-- Test classpath -->
176    <path id="test.classpath">
177      <pathelement location="${build.testcases.dir}"/>
178      <pathelement location="${junit.jar}"/>
179    </path>
180  
181 +  <macrodef name="run-tck-tests">
182 +    <attribute name="tck.src.dir" default="${tck.src.dir}"/>
183 +    <attribute name="target"/>
184 +    <attribute name="compile-target" default="@{target}"/>
185 +    <attribute name="workdir"/>
186 +    <attribute name="classes"/>
187 +    <attribute name="jvmflags" default=""/>
188 +    <element name="javac-elements" optional="true"/>
189 +    <sequential>
190 +
191 +    <mkdir dir="@{workdir}/tck-classes"/>
192 +
193 +    <javac srcdir="@{tck.src.dir}"
194 +           destdir="@{workdir}/tck-classes"
195 +           debug="${build.debug}"
196 +           debuglevel="${build.debuglevel}"
197 +           deprecation="${build.deprecation}"
198 +           source="@{compile-target}"
199 +           target="@{compile-target}"
200 +           classpath="${junit.jar}"
201 +           bootclasspath="@{classes}:${bootclasspath@{compile-target}}"
202 +           includeAntRuntime="false"
203 +           includeJavaRuntime="false"
204 +           executable="${javac@{compile-target}}"
205 +           fork="true">
206 +
207 +      <include name="*.java"/>
208 +      <compilerarg value="-XDignore.symbol.file=true"/>
209 +      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
210 +      <compilerarg line="${build.args}"/>
211 +      <javac-elements/>
212 +
213 +    </javac>
214 +
215 +    <java classname="${jsr166.tckTestClass}"
216 +          failonerror="true"
217 +          jvm="${java@{target}}"
218 +          fork="true">
219 +        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
220 +        <jvmarg line="@{jvmflags}"/>
221 +        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
222 +        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
223 +        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
224 +        <classpath>
225 +          <pathelement location="${junit.jar}"/>
226 +          <pathelement location="@{workdir}/tck-classes"/>
227 +        </classpath>
228 +    </java>
229 +
230 +    </sequential>
231 +  </macrodef>
232 +
233 +  <macrodef name="run-jtreg-tests">
234 +    <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
235 +    <attribute name="source" default="7"/>
236 +    <attribute name="target"/>
237 +    <attribute name="workdir"/>
238 +    <attribute name="classes"/>
239 +    <attribute name="jtregflags" default=""/>
240 +    <sequential>
241 +    <delete dir="@{workdir}/JTwork"   quiet="true"/>
242 +    <delete dir="@{workdir}/JTreport" quiet="true"/>
243 +    <mkdir dir="@{workdir}/JTwork/scratch"/>
244 +    <mkdir dir="@{workdir}/JTreport"/>
245 +    <jtreg dir="@{jtreg.src.dir}"
246 +           jdk="${jdk@{target}.home}"
247 +           workDir="@{workdir}/JTwork"
248 +           reportDir="@{workdir}/JTreport">
249 +
250 +      <arg value="-Xbootclasspath/p:@{classes}"/>
251 +      <arg value="-agentvm"/>
252 +      <arg value="-v:nopass,fail"/>
253 +      <arg value="-vmoptions:-esa -ea"/>
254 +      <arg value="-automatic"/>
255 +      <arg value="-k:!ignore"/>
256 +      <arg line="@{jtregflags}"/>
257 +    </jtreg>
258 +    </sequential>
259 +  </macrodef>
260 +
261    <!-- ALoops classpath -->
262    <path id="loops.classpath">
263      <pathelement location="${build.loops.dir}"/>
264    </path>
265  
266    <!-- Support @jls tag, used in jdk8+ javadoc -->
267 <  <!-- TODO: How do we get &trade to work? -->
160 <  <!-- TODO: Why isn't @jls a "standard" tag? -->
161 <  <!--   property name="javadoc.jls.cite" value="The Java&trade; Language Specification" -->
162 <  <property name="javadoc.jls.cite" value="The Java Language Specification"/>
267 >  <property name="javadoc.jls.cite" value="The Java&amp;trade; Language Specification"/>
268    <property name="javadoc.jls.option" value="jls:a:See &lt;cite&gt;${javadoc.jls.cite}&lt;/cite&gt;:"/>
269  
270    <!-- Main targets -->
# Line 186 | Line 291
291             fork="true">
292  
293        <include name="**/*.java"/>
294 <      <compilerarg line="${build.args}"/>
294 >      <compilerarg value="-Xprefer:source"/>
295        <compilerarg value="-XDignore.symbol.file=true"/>
296        <compilerarg value="-Xlint:all"/>
297 <
298 < <!--
194 <      <exclude name="java/lang/**"/>
297 >      <compilerarg value="-Xdoclint:all/protected"/>
298 >      <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
299        <compilerarg line="${build.args}"/>
196      <compilerarg line="-Xlint -Xmaxwarns 1000"/>
197 -->
300  
301      </javac>
200
302    </target>
303  
304  
204
305    <target name="jar"
306            depends="compile"
307            description="Builds library jar from compiled sources">
# Line 209 | Line 309
309      <jar destfile="${product.jar}">
310        <fileset dir="${build.classes.dir}"/>
311      </jar>
212
312    </target>
313  
314  
216
217  <target name="test"
218          depends="configure-tests, report-tests"
219          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
220
221
222
315    <target name="docs"
316            description="Builds javadocs for src/main to dist dir">
317  
318 <    <delete dir="${dist.javadocs.dir}"/>
319 <    <mkdir dir="${dist.javadocs.dir}"/>
318 >    <delete dir="${docs.dir}"/>
319 >    <mkdir dir="${docs.dir}"/>
320  
321      <!-- the packagenames="none" hack below prevents scanning the -->
322      <!-- sourcepath for packages -->
323  
324 <    <javadoc destdir="${dist.javadocs.dir}"
324 >    <javadoc destdir="${docs.dir}"
325               packagenames="none"
326               link="${jdkapi8docs.url}"
327               overview="${src.dir}/intro.html"
328 +             access="${build.javadoc.access}"
329               sourcepath="${src.dir}:${jdk8src.dir}"
330               classpath=""
331               executable="${javadoc8}">
239      <arg value="-XDignore.symbol.file=true"/>
240      <arg value="-tag"/>
241      <arg value="${javadoc.jls.option}"/>
332        <fileset dir="${src.dir}" defaultexcludes="yes">
333          <include name="**/*.java"/>
334        </fileset>
335 +      <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
336 +      <arg value="-XDignore.symbol.file=true"/>
337 +      <arg value="-tag"/>
338 +      <arg value="${javadoc.jls.option}"/>
339 +      <arg value="-tag"/>
340 +      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
341 +      <arg value="-tag"/>
342 +      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
343 +      <arg value="-tag"/>
344 +      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
345      </javadoc>
246
346    </target>
347  
348  
250
349    <target name="dist"
350 <          depends="dist-clean, dist-jar, docs"
350 >          depends="dist-clean, dist-jar, dist-docs"
351            description="Puts all distributable products in single hierarchy"/>
352  
353  
# Line 268 | Line 366
366        <exclude name="**/SyntaxTest.java"/>
367        <exclude name="**/SuperfluousAbstract.java"/>
368      </jar>
271
369    </target>
370  
371  
275
372    <target name="clean"
373            description="Removes all build products">
374  
# Line 281 | Line 377
377    </target>
378  
379  
284
380    <target name="dist-clean"
381            description="Removes all build and distribution products">
382  
383 +    <delete dir="${build.dir}"/>
384      <delete dir="${dist.dir}"/>
385  
386    </target>
387  
388  
293
294  <!-- Internal targets -->
295
296
389    <target name="dist-jar"
390            depends="clean, jar">
299
391      <copy file="${product.jar}" todir="${dist.dir}"/>
301
392    </target>
393  
394 <
395 <  <target name="compile-tests"
396 <          depends="jar">
307 <
308 <    <mkdir dir="${build.testcases.dir}"/>
309 <
310 <    <javac srcdir="${tck.src.dir}"
311 <          destdir="${build.testcases.dir}"
312 <            debug="${build.debug}"
313 <       debuglevel="${build.debuglevel}"
314 <      deprecation="${build.deprecation}"
315 <           source="${build.sourcelevel}"
316 <             fork="true">
317 <
318 <      <compilerarg value="${bootclasspath.args}"/>
319 <      <compilerarg line="${build.args}"/>
320 <      <compilerarg value="-XDignore.symbol.file=true"/>
321 <
322 <      <classpath refid="test.classpath"/>
323 <
324 <    </javac>
325 <
326 <    <javac srcdir="${test.src.dir}"
327 <          destdir="${build.testcases.dir}"
328 <            debug="${build.debug}"
329 <       debuglevel="${build.debuglevel}"
330 <      deprecation="${build.deprecation}"
331 <           source="${build.sourcelevel}"
332 <             fork="true">
333 <
334 <      <include name="jsr166/test/**"/>
335 <
336 <      <compilerarg value="${bootclasspath.args}"/>
337 <      <compilerarg line="${build.args}"/>
338 <      <compilerarg value="-XDignore.symbol.file=true"/>
339 <
340 <      <classpath refid="test.classpath"/>
341 <
342 <    </javac>
343 <
344 < <!--
345 <    <javac srcdir="${jtreg.src.dir}"
346 <          destdir="${build.testcases.dir}"
347 <            debug="${build.debug}"
348 <       debuglevel="${build.debuglevel}"
349 <      deprecation="${build.deprecation}"
350 <           source="${build.sourcelevel}"
351 <             fork="true">
352 <
353 <      <compilerarg value="${bootclasspath.args}"/>
354 <      <compilerarg line="${build.args}"/>
355 <      <compilerarg value="-XDignore.symbol.file=true"/>
356 <
357 <      <classpath refid="test.classpath"/>
358 <
359 <    </javac>
360 < -->
361 <
394 >  <target name="dist-docs"
395 >          depends="clean, docs">
396 >    <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
397    </target>
398  
399  
400 <  <target name="run-tests"
401 <          depends="compile-tests">
402 <
368 <    <!-- May be overridden by user.properties -->
369 <    <property name="testcase" value="*"/>
370 <
371 <    <mkdir dir="${build.reports.dir}"/>
372 <
373 <    <junit printsummary="true"
374 <             showoutput="true"
375 <          errorProperty="junit.failed"
376 <        failureProperty="junit.failed"
377 <                    dir="${build.reports.dir}"
378 <                   fork="true">
379 <
380 <      <jvmarg value="${bootclasspath.args}"/>
381 <      <jvmarg value="-server"/>
382 <      <jvmarg value="-showversion"/>
383 <
384 <      <classpath refid="test.classpath"/>
385 <
386 <      <formatter type="xml"/>
387 <
388 <      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
389 <        <fileset dir="${tck.src.dir}">
390 <          <include name="**/${testcase}Test.java"/>
391 <        </fileset>
392 <      </batchtest>
393 <
394 <      <batchtest todir="${build.reports.dir}" if="do.test.old">
395 <        <fileset dir="${test.src.dir}">
396 <          <include name="jsr166/test/**/${testcase}Test.java"/>
397 <        </fileset>
398 <      </batchtest>
399 <
400 < <!--
401 <      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
402 <        <fileset dir="${jtreg.src.dir}">
403 <          <include name="**/${testcase}Test.java"/>
404 <        </fileset>
405 <      </batchtest>
406 < -->
407 <
408 <    </junit>
400 >  <target name="test-tck"
401 >          depends="jar"
402 >          description="Runs tck tests for main directly">
403  
404 +    <run-tck-tests
405 +      target="8"
406 +      workdir="${build.dir}"
407 +      classes="${product.jar}"/>
408    </target>
409  
410 +  <target name="test-jtreg"
411 +          depends="jar"
412 +          description="Runs jtreg tests for main using the jtreg ant task">
413 +    <run-jtreg-tests
414 +       target="8"
415 +       workdir="${build.dir}"
416 +       classes="${product.jar}"/>
417 +  </target>
418  
419 <  <target name="report-tests"
420 <          depends="run-tests">
421 <
416 <    <!-- Sets junit.report.format to frames if redirection is present,
417 <         otherwise sets it to noframes. -->
418 <    <available property="junit.report.format"
419 <                  value="frames"
420 <              classname="org.apache.xalan.lib.Redirect"
421 <    />
422 <    <property name="junit.report.format" value="noframes"/>
423 <
424 <    <junitreport todir="${build.reports.dir}">
425 <      <fileset dir="${build.reports.dir}">
426 <        <include name="TEST-*.xml"/>
427 <      </fileset>
428 <      <report format="${junit.report.format}" todir="${build.reports.dir}"
429 <      />
430 <    </junitreport>
431 <
432 <    <fail message="Test Cases Failed" if="junit.failed"/>
433 <
419 >  <target name="test"
420 >          depends="test-tck, test-jtreg"
421 >          description="Runs tck and jtreg tests for main">
422    </target>
423  
424  
425 +
426    <target name="configure-compiler">
427  
428      <property name="unchecked.option" value="-Xlint:unchecked"/>
# Line 451 | Line 440
440    </target>
441  
442  
454  <target name="configure-tests"
455       depends="configure-compiler">
456
457    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
458    <available property="junit.available"
459               classname="junit.framework.Protectable"/>
460
461    <!-- Xalan -->
462    <available property="xalan.available"
463               classname="org.apache.xalan.Version"/>
464
465
466    <!-- Ant 1.6beta and later don't need or want this check -->
467    <!--
468    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
469          unless="junit.available"/>
470
471    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
472          unless="xalan.available"/>
473    -->
474
475  </target>
476
443  
444    <!-- Various demos and test programs -->
445  
# Line 506 | Line 472
472  
473    <!-- jsr166 4jdk7 -->
474  
509
475    <target name="4jdk7compile"
476            depends="configure-compiler"
477            description="Compiles src/jdk7 sources, targeting jdk7">
# Line 527 | Line 492
492             fork="true">
493  
494        <include name="**/*.java"/>
495 <      <compilerarg line="${build.args}"/>
495 >      <compilerarg value="-Xprefer:source"/>
496        <compilerarg value="-XDignore.symbol.file=true"/>
497        <compilerarg value="-Xlint:all"/>
498 +      <compilerarg line="${build.args}"/>
499  
500      </javac>
501 +  </target>
502  
536    <jar destfile="${4jdk7product.jar}" index="true">
537      <fileset dir="${build.4jdk7.classes.dir}"/>
538    </jar>
539
540    <mkdir dir="${build.4jdk7.tck.classes.dir}"/>
503  
504 <    <javac srcdir="${tck.src.dir}"
505 <           destdir="${build.4jdk7.tck.classes.dir}"
506 <           debug="${build.debug}"
545 <           debuglevel="${build.debuglevel}"
546 <           deprecation="${build.deprecation}"
547 <           source="6"
548 <           classpath="${junit.jar}"
549 <           bootclasspath="${4jdk7product.jar}:${bootclasspath6}"
550 <           includeAntRuntime="false"
551 <           includeJavaRuntime="false"
552 <           executable="${javac7}"
553 <           fork="true">
554 <
555 <      <include name="**/*.java"/>
556 <      <compilerarg line="${build.args}"/>
557 <      <compilerarg value="-XDignore.symbol.file=true"/>
558 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
504 >  <target name="4jdk7jar"
505 >          depends="4jdk7compile"
506 >          description="Builds library jar from compiled sources">
507  
508 <    </javac>
508 >    <jar destfile="${4jdk7product.jar}">
509 >      <fileset dir="${build.4jdk7.classes.dir}"/>
510 >    </jar>
511  
512    </target>
513  
514  
515    <target name="4jdk7-test-tck"
516 <          depends="4jdk7compile"
516 >          depends="4jdk7jar"
517            description="Runs tck tests for jsr166-4jdk7 directly">
518 +
519      <run-tck-tests
520 <      jvm="${java7}"
521 <      tck.classes="${build.4jdk7.tck.classes.dir}"
522 <      product.jar="${4jdk7product.jar}"/>
520 >      target="7"
521 >      workdir="${build.4jdk7.dir}"
522 >      classes="${4jdk7product.jar}">
523 >      <javac-elements>
524 >        <!-- JDK8+ test classes -->
525 >        <exclude name="*8Test.java"/>
526 >        <exclude name="DoubleAccumulatorTest.java"/>
527 >        <exclude name="DoubleAdderTest.java"/>
528 >        <exclude name="LongAccumulatorTest.java"/>
529 >        <exclude name="LongAdderTest.java"/>
530 >        <exclude name="CompletableFutureTest.java"/>
531 >        <exclude name="SplittableRandomTest.java"/>
532 >        <exclude name="StampedLockTest.java"/>
533 >      </javac-elements>
534 >    </run-tck-tests>
535    </target>
536  
537  
# Line 594 | Line 557
557  
558        <formatter type="brief"/>
559  
560 <      <test name="JSR166TestCase" haltonfailure="no">
560 >      <test name="${jsr166.tckTestClass}" haltonfailure="no">
561        </test>
562  
563      </junit>
564    </target>
565  
566 +  <target name="4jdk7-test-jtreg"
567 +          depends="4jdk7jar"
568 +          description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
569 +    <run-jtreg-tests
570 +       target="7"
571 +       workdir="${build.4jdk7.dir}"
572 +       classes="${4jdk7product.jar}"
573 +       jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/>
574 +  </target>
575 +
576 +
577 +  <target name="4jdk7-test"
578 +          depends="4jdk7-test-tck, 4jdk7-test-jtreg"
579 +          description="Runs tck and jtreg tests for jsr166-4jdk7">
580 +  </target>
581 +
582  
583    <target name="4jdk7docs"
584            description="Builds javadocs for src/jdk7 to dist dir">
585  
586 <    <delete dir="${dist.4jdk7.docs.dir}"/>
587 <    <mkdir dir="${dist.4jdk7.docs.dir}"/>
586 >    <delete dir="${4jdk7docs.dir}"/>
587 >    <mkdir dir="${4jdk7docs.dir}"/>
588  
589 <    <javadoc destdir="${dist.4jdk7.docs.dir}"
589 >    <javadoc destdir="${4jdk7docs.dir}"
590               packagenames="none"
591               link="${jdkapi7docs.url}"
592               overview="${4jdk7src.dir}/intro.html"
593 +             access="${build.javadoc.access}"
594               sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
595               classpath=""
596               executable="${javadoc7}">
617      <arg value="-XDignore.symbol.file=true"/>
597        <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
598          <include name="**/*.java"/>
599        </fileset>
600 +      <arg value="-XDignore.symbol.file=true"/>
601      </javadoc>
622
602    </target>
603  
604  
605    <target name="4jdk7dist"
606 <          depends="4jdk7dist-clean, 4jdk7dist-jar, 4jdk7docs"
606 >          depends="4jdk7dist-jar, 4jdk7dist-docs"
607            description="Puts all distributable products in single hierarchy"/>
608  
609  
631
610    <target name="4jdk7clean"
611            description="Removes all 4jdk7 build products">
612  
# Line 637 | Line 615
615    </target>
616  
617  
640
641  <target name="4jdk7dist-clean"
642          description="Removes all build and distribution products">
643
644  </target>
645
618    <target name="4jdk7dist-jar"
619 <          depends="4jdk7clean, 4jdk7compile">
648 <
619 >          depends="4jdk7clean, 4jdk7jar">
620      <copy file="${4jdk7product.jar}" todir="${dist.dir}"/>
621 +  </target>
622  
623 +
624 +  <target name="4jdk7dist-docs"
625 +          depends="4jdk7clean, 4jdk7docs">
626 +    <mirror-dir src="${4jdk7docs.dir}" dst="${dist.4jdk7docs.dir}"/>
627    </target>
628  
629  
# Line 657 | Line 633
633            depends="configure-compiler"
634            description="Compiles jsr166x sources to build dir">
635  
636 <    <mkdir dir="${build.jsr166x.dir}"/>
636 >    <mkdir dir="${build.jsr166x.classes.dir}"/>
637  
638      <javac srcdir="${topsrc.dir}"
639 <           destdir="${build.jsr166x.dir}"
639 >           destdir="${build.jsr166x.classes.dir}"
640             debug="${build.debug}"
641             debuglevel="${build.debuglevel}"
642             deprecation="${build.deprecation}"
643             classpath=""
668           source="5"
644             bootclasspath="${bootclasspath6}"
645 +           source="5"
646             includeAntRuntime="false"
647             includeJavaRuntime="false"
648             executable="${javac7}"
649             fork="true">
650  
651        <include name="jsr166x/**/*.java"/>
676      <compilerarg line="${build.args}"/>
652        <compilerarg value="-XDignore.symbol.file=true"/>
653        <compilerarg value="-Xlint:all,-unchecked,-rawtypes"/>
654 +      <compilerarg line="${build.args}"/>
655  
656      </javac>
681
657    </target>
658  
659  
685
660    <target name="jsr166xjar"
661            depends="jsr166xcompile"
662            description="Builds library jar from compiled sources">
663  
664      <jar destfile="${jsr166x.jar}">
665 <      <fileset dir="${build.jsr166x.dir}"/>
665 >      <fileset dir="${build.jsr166x.classes.dir}"/>
666      </jar>
667  
668    </target>
669  
670  
697
671    <target name="jsr166xdocs"
672            description="Builds javadocs to dist dir">
673  
674 <    <delete dir="${dist.jsr166xjavadocs.dir}"/>
675 <    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
674 >    <delete dir="${jsr166xdocs.dir}"/>
675 >    <mkdir dir="${jsr166xdocs.dir}"/>
676  
677 <    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
677 >    <javadoc destdir="${jsr166xdocs.dir}"
678               packagenames="jsr166x.*"
679               link="${jdkapidocs.url}"
680 <             source="5"
708 <             bootclasspath="${bootclasspath6}"
680 >             access="${build.javadoc.access}"
681               sourcepath="${topsrc.dir}:${jdk6src.dir}"
682 <             executable="${javadoc7}"
683 <             additionalparam="-XDignore.symbol.file=true" />
682 >             bootclasspath="${bootclasspath6}"
683 >             source="5"
684 >             executable="${javadoc7}">
685 >      <arg value="-XDignore.symbol.file=true"/>
686  
687 +    </javadoc>
688    </target>
689  
690  
691    <target name="jsr166xdist"
692 <          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdocs"
692 >          depends="jsr166xdist-jar, jsr166xdist-docs"
693            description="Puts all distributable products in single hierarchy"/>
694  
695  
721
696    <target name="jsr166xclean"
697            description="Removes all jsr166x build products">
698  
# Line 727 | Line 701
701    </target>
702  
703  
730
731  <target name="jsr166xdist-clean"
732          description="Removes all build and distribution products">
733
734  </target>
735
736
704    <target name="jsr166xdist-jar"
705            depends="jsr166xclean, jsr166xjar">
739
706      <copy file="${jsr166x.jar}" todir="${dist.dir}"/>
707 +  </target>
708  
709 +  <target name="jsr166xdist-docs"
710 +          depends="jsr166xclean, jsr166xdocs">
711 +    <mirror-dir src="${jsr166xdocs.dir}" dst="${dist.jsr166xdocs.dir}"/>
712    </target>
713  
714    <!-- jsr166y -->
# Line 748 | Line 718
718            depends="configure-compiler"
719            description="Compiles jsr166y sources">
720  
721 <    <mkdir dir="${build.jsr166y.dir}"/>
721 >    <mkdir dir="${build.jsr166y.classes.dir}"/>
722  
723      <javac srcdir="${topsrc.dir}"
724 <           destdir="${build.jsr166y.dir}"
724 >           destdir="${build.jsr166y.classes.dir}"
725             debug="${build.debug}"
726             debuglevel="${build.debuglevel}"
727             deprecation="${build.deprecation}"
# Line 764 | Line 734
734             fork="true">
735  
736        <include name="jsr166y/**/*.java"/>
767      <compilerarg line="${build.args}"/>
737        <compilerarg value="-XDignore.symbol.file=true"/>
738        <compilerarg value="-Xlint:all"/>
739 +      <compilerarg line="${build.args}"/>
740 +
741      </javac>
742    </target>
743  
# Line 776 | Line 747
747            description="Builds library jar from compiled sources">
748  
749      <jar destfile="${jsr166y.jar}" index="true">
750 <      <fileset dir="${build.jsr166y.dir}"/>
750 >      <fileset dir="${build.jsr166y.classes.dir}"/>
751      </jar>
752  
753    </target>
754  
755  
785
756    <target name="jsr166ydocs"
757            description="Builds javadocs to dist dir">
758  
759 <    <delete dir="${dist.jsr166yjavadocs.dir}"/>
760 <    <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
759 >    <delete dir="${jsr166ydocs.dir}"/>
760 >    <mkdir dir="${jsr166ydocs.dir}"/>
761  
762 <    <javadoc destdir="${dist.jsr166yjavadocs.dir}"
762 >    <javadoc destdir="${jsr166ydocs.dir}"
763               packagenames="jsr166y.*"
764               link="${jdkapidocs.url}"
765 <             source="6"
796 <             bootclasspath="${bootclasspath6}"
765 >             access="${build.javadoc.access}"
766               sourcepath="${topsrc.dir}:${jdk6src.dir}"
767 <             executable="${javadoc7}"
768 <             additionalparam="-XDignore.symbol.file=true" />
767 >             bootclasspath="${bootclasspath6}"
768 >             source="6"
769 >             executable="${javadoc7}">
770 >      <arg value="-XDignore.symbol.file=true"/>
771  
772 +    </javadoc>
773    </target>
774  
775  
776    <target name="jsr166ydist"
777 <          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydocs"
777 >          depends="jsr166ydist-jar, jsr166ydist-docs"
778            description="Puts all distributable products in single hierarchy"/>
779  
780  
809
781    <target name="jsr166yclean"
782            description="Removes all jsr166y build products">
783  
# Line 815 | Line 786
786    </target>
787  
788  
818
819  <target name="jsr166ydist-clean"
820          description="Removes all build and distribution products">
821
822  </target>
823
789    <target name="jsr166ydist-jar"
790            depends="jsr166yclean, jsr166yjar">
826
791      <copy file="${jsr166y.jar}" todir="${dist.dir}"/>
792 +  </target>
793  
794 +  <target name="jsr166ydist-docs"
795 +          depends="jsr166yclean, jsr166ydocs">
796 +    <mirror-dir src="${jsr166ydocs.dir}" dst="${dist.jsr166ydocs.dir}"/>
797    </target>
798  
799  
# Line 836 | Line 804
804            depends="configure-compiler, jsr166yjar"
805            description="Compiles extra166y sources">
806  
807 <    <mkdir dir="${build.extra166y.dir}"/>
807 >    <mkdir dir="${build.extra166y.classes.dir}"/>
808  
809      <javac srcdir="${topsrc.dir}"
810 <           destdir="${build.extra166y.dir}"
810 >           destdir="${build.extra166y.classes.dir}"
811             debug="${build.debug}"
812             debuglevel="${build.debuglevel}"
813             deprecation="${build.deprecation}"
814 +           bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
815             classpath=""
816             source="6"
848           bootclasspath="${jsr166y.jar}:${bootclasspath6}"
817             includeAntRuntime="false"
818             includeJavaRuntime="false"
819             executable="${javac7}"
820             fork="true">
821  
822        <include name="extra166y/**/*.java"/>
855      <compilerarg line="${build.args}"/>
823        <compilerarg value="-XDignore.symbol.file=true"/>
824        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
825 +      <compilerarg line="${build.args}"/>
826  
827      </javac>
860
828    </target>
829  
830  
864
831    <target name="extra166yjar"
832            depends="extra166ycompile"
833            description="Builds library jar from compiled sources">
834  
835      <jar destfile="${extra166y.jar}" index="true">
836 <      <fileset dir="${build.extra166y.dir}"/>
836 >      <fileset dir="${build.extra166y.classes.dir}"/>
837      </jar>
838  
839    </target>
840  
841  
876
842    <target name="extra166ydocs"
843            description="Builds javadocs to build dir">
844  
845 <    <delete dir="${dist.extra166yjavadocs.dir}"/>
846 <    <mkdir dir="${dist.extra166yjavadocs.dir}"/>
845 >    <delete dir="${extra166ydocs.dir}"/>
846 >    <mkdir dir="${extra166ydocs.dir}"/>
847  
848 <    <javadoc destdir="${dist.extra166yjavadocs.dir}"
848 >    <javadoc destdir="${extra166ydocs.dir}"
849               packagenames="extra166y.*"
850               link="${jdkapidocs.url}"
851 <             source="6"
887 <             bootclasspath="${bootclasspath6}"
851 >             access="${build.javadoc.access}"
852               sourcepath="${topsrc.dir}:${jdk6src.dir}"
853 <             executable="${javadoc7}"
854 <             additionalparam="-XDignore.symbol.file=true" />
853 >             bootclasspath="${bootclasspath6}"
854 >             source="6"
855 >             executable="${javadoc7}">
856 >      <arg value="-XDignore.symbol.file=true"/>
857  
858 +    </javadoc>
859    </target>
860  
861  
862    <target name="extra166ydist"
863 <          depends="extra166ydist-clean, extra166ydist-jar, extra166ydocs"
863 >          depends="extra166ydist-jar, extra166ydist-docs"
864            description="Puts all distributable products in single hierarchy"/>
865  
866  
900
867    <target name="extra166yclean"
868            description="Removes all extra166y build products">
869  
# Line 906 | Line 872
872    </target>
873  
874  
909
910  <target name="extra166ydist-clean"
911          description="Removes all build and distribution products">
912
913  </target>
914
875    <target name="extra166ydist-jar"
876            depends="extra166yclean, extra166yjar">
917
877      <copy file="${extra166y.jar}" todir="${dist.dir}"/>
878 +  </target>
879  
880 +  <target name="extra166ydist-docs"
881 +          depends="extra166yclean, extra166ydocs">
882 +    <mirror-dir src="${extra166ydocs.dir}" dst="${dist.extra166ydocs.dir}"/>
883    </target>
884  
885    <!-- jsr166e -->
886  
887 +  <property name="build.jsr166e.java.version" value="6"/>
888 +  <property name="build.jsr166e.javac" value="${javac6}"/>
889 +
890    <target name="jsr166ecompile"
891            depends="configure-compiler"
892            description="Compiles jsr166e sources">
893  
894 <    <mkdir dir="${build.jsr166e.dir}"/>
894 >    <mkdir dir="${build.jsr166e.classes.dir}"/>
895  
896      <javac srcdir="${topsrc.dir}"
897 <           destdir="${build.jsr166e.dir}"
897 >           destdir="${build.jsr166e.classes.dir}"
898             debug="${build.debug}"
899             debuglevel="${build.debuglevel}"
900             deprecation="${build.deprecation}"
901 <           source="7"
901 >           source="${build.jsr166e.java.version}"
902             classpath=""
903             includeAntRuntime="false"
904             includeJavaRuntime="false"
905 <           executable="${javac7}"
905 >           executable="${build.jsr166e.javac}"
906             fork="true">
907  
908        <include name="jsr166e/**/*.java"/>
943      <compilerarg line="${build.args}"/>
909        <compilerarg value="-XDignore.symbol.file=true"/>
910        <compilerarg value="-Xlint:all"/>
911 +      <compilerarg line="${build.args}"/>
912  
913      </javac>
948
914    </target>
915  
916  
952
917    <target name="jsr166ejar"
918            depends="jsr166ecompile"
919            description="Builds library jar from compiled sources">
920  
921      <jar destfile="${jsr166e.jar}" index="true">
922 <      <fileset dir="${build.jsr166e.dir}"/>
922 >      <fileset dir="${build.jsr166e.classes.dir}"/>
923      </jar>
924  
925    </target>
926  
927  
964
928    <target name="jsr166edocs"
929            description="Builds javadocs to build dir">
930  
931 <    <delete dir="${dist.jsr166ejavadocs.dir}"/>
932 <    <mkdir dir="${dist.jsr166ejavadocs.dir}"/>
931 >    <delete dir="${jsr166edocs.dir}"/>
932 >    <mkdir dir="${jsr166edocs.dir}"/>
933  
934 <    <javadoc destdir="${dist.jsr166ejavadocs.dir}"
934 >    <javadoc destdir="${jsr166edocs.dir}"
935               packagenames="jsr166e.*"
936               link="${jdkapidocs.url}"
937 <             source="7"
938 <             sourcepath="${topsrc.dir}:${jdk7src.dir}"
939 <             executable="${javadoc7}"
940 <             additionalparam="-XDignore.symbol.file=true" >
937 >             access="${build.javadoc.access}"
938 >             sourcepath="${topsrc.dir}:${jdk6src.dir}"
939 >             source="${build.jsr166e.java.version}"
940 >             executable="${javadoc7}">
941 >      <arg value="-XDignore.symbol.file=true"/>
942 >
943      </javadoc>
944 +  </target>
945 +
946  
947 +  <target name="jsr166e-test-tck-one-java-version"
948 +          depends="jsr166ejar">
949 +
950 +    <echo message="Testing with jdk${build.jsr166e.java.version} ..."/>
951 +
952 +    <run-tck-tests
953 +      tck.src.dir="${test.src.dir}/tck-jsr166e"
954 +      target="${build.jsr166e.java.version}"
955 +      workdir="${build.jsr166e.dir}"
956 +      classes="${jsr166e.jar}"/>
957 +  </target>
958 +
959 +  <target name="jsr166e-test-tck"
960 +          description="Runs tck tests for jsr166e for multiple java versions">
961 +
962 + <!--     <antcall target="clean"/> -->
963 + <!--     <antcall target="jsr166e-test-tck-one-java-version"> -->
964 + <!--       <param name="build.jsr166e.java.version" value="8"/> -->
965 + <!--       <param name="build.jsr166e.javac" value="${javac8}"/> -->
966 + <!--     </antcall> -->
967 +
968 +    <antcall target="clean"/>
969 +    <antcall target="jsr166e-test-tck-one-java-version">
970 +      <param name="build.jsr166e.java.version" value="7"/>
971 +      <param name="build.jsr166e.javac" value="${javac7}"/>
972 +    </antcall>
973 +
974 +    <antcall target="clean"/>
975 +    <antcall target="jsr166e-test-tck-one-java-version">
976 +      <param name="build.jsr166e.java.version" value="6"/>
977 +      <param name="build.jsr166e.javac" value="${javac6}"/>
978 +    </antcall>
979    </target>
980  
981  
982 +  <target name="jsr166e-test"
983 +          depends="jsr166e-test-tck"
984 +          description="Runs all tests for jsr166e">
985 +  </target>
986 +
987    <target name="jsr166edist"
988 <          depends="jsr166edist-clean, jsr166edist-jar, jsr166edocs"
988 >          depends="jsr166edist-jar, jsr166edist-docs"
989            description="Puts all distributable products in single hierarchy"/>
990  
991  
988
992    <target name="jsr166eclean"
993            description="Removes all jsr166e build products">
991
994      <delete dir="${build.jsr166e.dir}"/>
993
995    </target>
996  
997  
998 <  <target name="jsr166edist-clean"
999 <          description="Removes all build and distribution products">
998 >  <target name="jsr166edist-jar"
999 >          depends="jsr166eclean, jsr166ejar">
1000 >    <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
1001 >  </target>
1002  
1003 +  <target name="jsr166edist-docs"
1004 +          depends="jsr166eclean, jsr166edocs">
1005 +    <mirror-dir src="${jsr166edocs.dir}" dst="${dist.jsr166edocs.dir}"/>
1006    </target>
1007  
1002  <target name="jsr166edist-jar"
1003          depends="jsr166eclean, jsr166ejar">
1008  
1009 <    <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
1009 > <!-- Find buglets that can be detected by static build tools -->
1010  
1011 +  <target name="lint">
1012 +    <antcall target="dists">
1013 +      <param name="build.javadoc.access" value="private"/>
1014 +    </antcall>
1015    </target>
1016  
1017 +
1018   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines